|
|
|
|
48
|
</bean>
|
48
|
</bean>
|
49
|
|
49
|
|
50
|
<!-- part 2 :for tx -->
|
50
|
<!-- part 2 :for tx -->
|
|
|
51
|
+ <!--
|
51
|
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
|
52
|
<bean id="transactionManager" class="org.springframework.jdbc.datasource.DataSourceTransactionManager">
|
52
|
<property name="dataSource" ref="dataSource" />
|
53
|
<property name="dataSource" ref="dataSource" />
|
53
|
</bean>
|
54
|
</bean>
|
|
|
|
|
70
|
<aop:pointcut id="txoperation" expression="execution(* com.xxl.job.admin.service.imp.*.*(..))" />
|
71
|
<aop:pointcut id="txoperation" expression="execution(* com.xxl.job.admin.service.imp.*.*(..))" />
|
71
|
<aop:advisor pointcut-ref="txoperation" advice-ref="txAdvice" />
|
72
|
<aop:advisor pointcut-ref="txoperation" advice-ref="txAdvice" />
|
72
|
</aop:config>
|
73
|
</aop:config>
|
|
|
74
|
+ -->
|
73
|
|
75
|
|
74
|
</beans>
|
76
|
</beans>
|