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

Spring《八-一》CGLIB代理和自动代理

时间:2017-06-19 19:33:08      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:ref   cep   interface   value   etc   cto   lib   技术分享   img   

CGLIB代理

配置文档

技术分享
 1 <bean id="logProxy" class="org.springframework.aop.framework.ProxyFactoryBean">
 2 <property name="proxyTargetClass">
 3 <value>true</value>
 4 </property>
 5 <property name="target">
 6     <ref bean="timeBook">
 7 </property>
 8 <property name="interceptorNames">
 9 <list>
10     <value>log</value>
11 </list>
12 </property>
13 </bean>
View Code

特点:

1、在动态代理的基础上,只需要增加<property name="proxyTargetClass"><value>true</value></property>该属性。

2、在动态代理的基础上取消<property name="proxyInterfaces"><value>***</value></property>代理接口属性。

自动代理

配置文档

<bean id="autoProxyCreator" class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />

特点:

1、只需将动态代理中的bean logProxy 改为上述配置文档中即可。

Spring《八-一》CGLIB代理和自动代理

标签:ref   cep   interface   value   etc   cto   lib   技术分享   img   

原文地址:http://www.cnblogs.com/swordyt/p/7049909.html

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