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

相关文章:

  • 2021-10-12
  • 2022-12-23
  • 2021-11-30
  • 2021-04-16
  • 2021-12-29
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-12-22
  • 2022-12-23
  • 2021-12-10
  • 2020-07-27
  • 2021-08-28
  • 2021-10-02
相关资源
相似解决方案