12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- <?xml version="1.0" encoding="UTF-8"?>
- <beans xmlns="http://www.springframework.org/schema/beans"
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xmlns:tx="http://www.springframework.org/schema/tx"
- xmlns:context="http://www.springframework.org/schema/context"
- xmlns:aop="http://www.springframework.org/schema/aop"
- xsi:schemaLocation="http://www.springframework.org/schema/beans
- http://www.springframework.org/schema/beans/spring-beans.xsd
- http://www.springframework.org/schema/tx
- https://www.springframework.org/schema/tx/spring-tx.xsd
- http://www.springframework.org/schema/context
- https://www.springframework.org/schema/context/spring-context.xsd
- http://www.springframework.org/schema/aop
- https://www.springframework.org/schema/aop/spring-aop.xsd
- ">
- <context:property-placeholder location="jdbc.properties"></context:property-placeholder>
- <bean id="dataSource" class="com.alibaba.druid.pool.DruidDataSource">
- <property name="driverClassName" value="${jdbc.driver}"></property>
- <property name="url" value="${jdbc.url}"></property>
- <property name="username" value="${jdbc.username}"></property>
- <property name="password" value="${jdbc.password}"></property>
- <!-- <property name="defaultAutoCommit" value="false"></property>-->
- </bean>
- <bean id="jdbcTemp" class="org.springframework.jdbc.core.JdbcTemplate">
- <property name="dataSource" ref="dataSource"></property>
- </bean>
- <bean id="accountDao" class="com.transaction_.dao.impl.AccountDaoImpl">
- <property name="jdbcTemplate" ref="jdbcTemp"></property>
- </bean>
- <bean id="accountService" class="com.transaction_.service.impl.AccountServiceImpl">
- <property name="accountDao" ref="accountDao">
- </property>
- </bean>
- <bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
- <property name="dataSource" ref="dataSource"></property>
- </bean>
- <!-- <tx:advice id="interceptor" transaction-manager="transactionManager">-->
- <!-- <tx:attributes>-->
- <!-- <tx:method name="transfer" rollback-for="java.lang.Exception" timeout="-1"/>-->
- <!-- </tx:attributes>-->
- <!-- </tx:advice>-->
- <!-- <aop:config>-->
- <!-- <aop:advisor advice-ref="interceptor" pointcut="execution(* com.transaction_.service.impl.AccountServiceImpl.*(..))"></aop:advisor>-->
- <!-- </aop:config>-->
- </beans>
|