ProxyFactory的xml配置方式

在spring中配置,将所有的xml贴出来了,以及proxyFactory 所使用的一些属性解释:
<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p" xmlns:util="http://www.springframework.org/schema/util"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-4.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-4.0.xsd
http://www.springframework.org/schema/util
http://www.springframework.org/schema/util/spring-util-4.0.xsd
http://www.springframework.org/schema/tx
http://www.springframework.org/schema/tx/spring-tx-4.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop-4.0.xsd">
<bean id="greetingAdvice" class="com.web.spring.aop.example.beforadvice.GreetingBeforAdvice"/>
<bean id="target" class="com.web.spring.aop.example.beforadvice.NaiveWaiter"/>
<!--Proxyfactorybeanfactorybean接口的实现类 -->
<bean id="waiter" class="org.springframework.aop.framework.Proxyfactorybean"
p:proxyInterfaces="com.web.spring.aop.example.beforadvice.Waiter"
p:interceptorNames="greetingAdvice"
p:target-ref="target"
p:proxyTargetClass="true"
/>
<!--
1.proxyInterfaces代理所要实现的接口,可以是多个接口。该属性还有一个别名interfaces
2.interceptorNames需要织入目标对象的bean列表,采用Bean的名称指定。这些Bean必须实现了
org.aopalliance.intercept.MethodInterceptor或
org.springframework.aop.Advisor 的Bean,配置中的顺序对应调用的顺序。
3.singleton 返回的代理是否是简单实例,默认为单实例;
4.optimize 当设置成true 时,强制使用Cglib代理。
5.proxyTargetClass 是否对类进行代理(而不是对接口进行代理),设置为true时,使用CGLib代理。
-->
</beans>

此外,在xml配置文件中proxyTargetClass 设置为true后,无需再设置proxyInterfaces属性,即使设置也会被Proxyfactorybean忽略。

main方法测试:

public static void main(String[] args) {
ApplicationContext applicationContext=new ClassPathXmlApplicationContext("proxyFcatory.xml");
Waiter waiter = (Waiter) applicationContext.getBean("waiter");
waiter.greetTo("John");
}
因此文与上篇有衔接,如有参照的朋友请将上篇一起参考。谢谢!

相关文章

引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满足人的生产生活需要而产生的。具体...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
Writer:BYSocket(泥沙砖瓦浆木匠) 微博:BYSocket 豆瓣:BYSocket Reprint it anywhere u want. 文章...
http://blog.jobbole.com/79252/ 引言 NOKIA 有句著名的广告语:“科技以人为本”。任何技术都是为了满...
(点击上方公众号,可快速关注) 公众号:smart_android 作者:耿广龙|loonggg 点击“阅读原文”,可查看...
一、xml与xslt 相信所有人对xml都不陌生,其被广泛的应用于数据数据传输、保存与序列化中,是一种极为强...