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>
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代理和自动代理的主要内容,如果未能解决你的问题,请参考以下文章

spring 如何决定使用jdk动态代理和cglib(转)

Spring中的cglib动态代理

spring的AOP动态代理--JDK代理和CGLIB代理

JDK和Cglib动态代理

Spring AOP 实现原理与 CGLIB 应用

Spring AOP中的JDK和CGLib动态代理哪个效率更高?