首页 > 代码库 > spring aop注意事项
spring aop注意事项
spring aop有 JDK动态代理及CGLIB,还可以使用ASPECTJ。
其JDK动态代理是对接口代理,而cglib是对类进行代理。aspectJ则对源代码class进行织入。
这里需要注意的是cglib代理,它会调用两次目标对象的构造方法。JDK动态代理及aspectJ则只调用一次。
这样当使用cglib代理,并且使用目标对象的默认无参构造方法进行一些资源初始化时,可能就会发生初始化两次(根据业务场景,假设只能初始化一次)。
测试代码:
xml中配置aop:
<aop:config proxy-target-class="true">
<aop:aspect ref="loggerAspect">
<aop:pointcut expression="execution(* test.spring..*.*(..))"
id="loggerPointcutOfService" />
<aop:before method="log" pointcut-ref="loggerPointcutOfService" />
<aop:after method="afterLog" pointcut-ref="loggerPointcutOfService" />
<aop:around method="logTimeForMethodSpend" pointcut-ref="loggerPointcutOfService" />
</aop:aspect>
</aop:config>
<bean id="b" class="test.spring.B">
</bean>
在B类构造方法中,输出:
in b construtor
调用代码对象b的相应方法时:
会输出:
in b construtor
in b construtor