码迷,mamicode.com
首页 > 编程语言 > 详细

spring aop注意事项

时间:2014-06-08 17:39:08      阅读:232      评论:0      收藏:0      [点我收藏+]

标签:c   class   a   tar   int   get   

 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

 

 

spring aop注意事项,布布扣,bubuko.com

spring aop注意事项

标签:c   class   a   tar   int   get   

原文地址:http://blog.csdn.net/zhaozhenzuo/article/details/28900395

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!