Spring《八-一》CGLIB代理和自动代理
Posted 星剑
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring《八-一》CGLIB代理和自动代理相关的知识,希望对你有一定的参考价值。
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>
特点:
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代理和自动代理的主要内容,如果未能解决你的问题,请参考以下文章