Spring AOP系列之三:环绕代理

系统 2162 0
通过实现 org.aopalliance.intercept.MethodInterceptor 接口来实现环绕通知:

    
public class CarAroundProxy implements MethodInterceptor {

	@Override
	public Object invoke(MethodInvocation invocation) throws Throwable {
		System.out.println("Skoda 4S shop");
		Object result = invocation.proceed();
		System.out.println("Give 200 maintenance coupon via around proxy");
		return result;
	}
}

  


Spring配置文件beans-around-proxy.xml:
    
<?xml version="1.0" encoding="UTF-8"?>
<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.xsd"
  default-autowire="byName">

  <bean id="car" class="com.john.spring.aop.Car">
  	<property name="name" value="Superb" />
	<property name="price" value="220000" />
  </bean>
  
  <bean id="carAroundProxy" class="com.john.spring.aop.CarAroundProxy" />
  
  <!-- 通过ProxyFactoryBean来生成实现指定接口,拦截指定对象方法的代理类 -->
  <bean id="proxyBean" class="org.springframework.aop.framework.ProxyFactoryBean">
  	<property name="proxyInterfaces"><!-- 代理需实现的接口 -->
  		<value>com.john.spring.aop.Vehicle</value>
	</property>
	<property name="interceptorNames"><!-- 拦截器名称列表 -->
		<list>
			<value>carAroundProxy</value>
		</list>
	</property>
	<property name="target"><!-- 目标对象 -->
		<ref bean="car" />
	</property>
  </bean>
</beans>

  


测试:
    
public static void main(String[] args) {
	ApplicationContext ctx = new ClassPathXmlApplicationContext(new String[] { "beans-around-proxy.xml" });
	Vehicle vehicle = (Vehicle) ctx.getBean("proxyBean");
	vehicle.info();
}

  


输出:
Skoda 4S shop
Car name: Superb, price: 220000
Give 200 maintenance coupon via around proxy

调试程序,vehicle使用JDK的代理生成:
Spring AOP系列之三:环绕代理

Spring AOP系列之三:环绕代理


更多文章、技术交流、商务合作、联系博主

微信扫码或搜索:z360901061

微信扫一扫加我为好友

QQ号联系: 360901061

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描下面二维码支持博主2元、5元、10元、20元等您想捐的金额吧,狠狠点击下面给点支持吧,站长非常感激您!手机微信长按不能支付解决办法:请将微信支付二维码保存到相册,切换到微信,然后点击微信右上角扫一扫功能,选择支付二维码完成支付。

【本文对您有帮助就好】

您的支持是博主写作最大的动力,如果您喜欢我的文章,感觉我的文章对您有帮助,请用微信扫描上面二维码支持博主2元、5元、10元、自定义金额等您想捐的金额吧,站长会非常 感谢您的哦!!!

发表我的评论
最新评论 总共0条评论