为什么要在两个地方配置method
老师在“配置事务的通知”和“配置AOP的切面”是都配置了对哪个方法加强
在“配置事务的通知”中指定了transfer方法:
<tx:method name="transfer" propagation="REQUIRED"/>
在“配置AOP的切面”中指定了任意方法:
<aop:pointcut expression="execution(* demo3.AccountService+.*(..))" id="pointcut1"/>
,请问这是否重复了?
老师在“配置事务的通知”和“配置AOP的切面”是都配置了对哪个方法加强
在“配置事务的通知”中指定了transfer方法:
<tx:method name="transfer" propagation="REQUIRED"/>
在“配置AOP的切面”中指定了任意方法:
<aop:pointcut expression="execution(* demo3.AccountService+.*(..))" id="pointcut1"/>
,请问这是否重复了?
2016-08-28
举报