Spring - AOP - Auto proxy creato
2020-01-18 本文已影响0人
HRocky
原文地址:https://mkyong.com/spring/spring-auto-proxy-creator-example/
在Spring - AOP - Advice
和Spring - AOP - Pointcut,Advisor
这两篇文章中,您必须为每个需要AOP支持的bean手动创建一个代理bean(ProxyFactoryBean)。
这不是一种有效的方法,例如,如果您希望客户模块中的所有DAO类都实现带有SQL日志记录支持(建议)的AOP功能,那么您必须手动创建许多代理工厂bean,结果就是有大量代理bean充斥您的bean配置文件。
幸运的是,Spring附带了两个自动代理创建器,可以自动为您的bean创建代理。
1. BeanNameAutoProxyCreator示例
在此之前,您必须手动创建一个代理bean(ProxyFactoryBean)。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="customerService" class="com.mkyong.customer.services.CustomerService">
<property name="name" value="Yong Mook Kim" />
<property name="url" value="http://www.mkyong.com" />
</bean>
<bean id="hijackAroundMethodBeanAdvice" class="com.mkyong.aop.HijackAroundMethod" />
<bean id="customerServiceProxy"
class="org.springframework.aop.framework.ProxyFactoryBean">
<property name="target" ref="customerService" />
<property name="interceptorNames">
<list>
<value>customerAdvisor</value>
</list>
</property>
</bean>
<bean id="customerAdvisor"
class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor">
<property name="mappedName" value="printName" />
<property name="advice" ref="hijackAroundMethodBeanAdvice" />
</bean>
</beans>
并获得具有代理名称“customerServiceProxy”的bean的bean。
CustomerService cust = (CustomerService)appContext.getBean("customerServiceProxy");
在自动代理机制中,您只需要创建一个BeanNameAutoProxyCreator,并将所有bean(通过bean名称或正则表达式名称)和“advisor”包含在一个单元中。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="customerService" class="com.mkyong.customer.services.CustomerService">
<property name="name" value="Yong Mook Kim" />
<property name="url" value="http://www.mkyong.com" />
</bean>
<bean id="hijackAroundMethodBeanAdvice" class="com.mkyong.aop.HijackAroundMethod" />
<bean id="customerAdvisor"
class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor">
<property name="mappedName" value="printName" />
<property name="advice" ref="hijackAroundMethodBeanAdvice" />
</bean>
<bean
class="org.springframework.aop.framework.autoproxy.BeanNameAutoProxyCreator">
<property name="beanNames">
<list>
<value>*Service</value>
</list>
</property>
<property name="interceptorNames">
<list>
<value>customerAdvisor</value>
</list>
</property>
</bean>
</beans>
现在,您可以通过原始名称“customerService”获取Bean,甚至不知道该Bean是代理。
CustomerService cust = (CustomerService)appContext.getBean("customerService");
2. DefaultAdvisorAutoProxyCreator示例
这个DefaultAdvisorAutoProxyCreator非常强大,如果任何bean被advisor匹配,Spring都会自动为其创建代理。
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-2.5.xsd">
<bean id="customerService" class="com.mkyong.customer.services.CustomerService">
<property name="name" value="Yong Mook Kim" />
<property name="url" value="http://www.mkyong.com" />
</bean>
<bean id="hijackAroundMethodBeanAdvice" class="com.mkyong.aop.HijackAroundMethod" />
<bean id="customerAdvisor"
class="org.springframework.aop.support.NameMatchMethodPointcutAdvisor">
<property name="mappedName" value="printName" />
<property name="advice" ref="hijackAroundMethodBeanAdvice" />
</bean>
<bean class="org.springframework.aop.framework.autoproxy.DefaultAdvisorAutoProxyCreator" />
</beans>
这只是超出了能力范围,因为您无法控制应该将哪个bean作为代理,所以您只能相信Spring会为您做得最好。如果你想在你的项目中实现它,请小心。