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>