Advertisement
Guest User

Untitled

a guest
Feb 21st, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.26 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3.        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.        xmlns:context="http://www.springframework.org/schema/context"
  5.        xmlns:tx="http://www.springframework.org/schema/tx"
  6.        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
  7.         http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-3.0.xsd
  8.         http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd"
  9.        default-autowire="byName">
  10.  
  11.     <!-- import another XML configuration -->
  12.     <import resource="datasourceContext.xml" />
  13.  
  14.     <!-- Activates annotation-based bean configuration -->
  15.     <context:annotation-config />
  16.  
  17.  
  18.     <!-- needed is for @Configurable -->
  19.     <context:component-scan base-package="org.paloma.switching">
  20.         <context:exclude-filter type="assignable" expression="org.paloma.switching.bo.GetOnlinePartnerXmppAccount"/>
  21.     </context:component-scan>
  22.     <context:component-scan base-package="org.jleaf.wallet" />     
  23.  
  24.  
  25.     <!-- active transaction manager -->
  26.     <tx:annotation-driven transaction-manager="transactionManager" />
  27.  
  28.  
  29. </beans>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement