<span style="font-size:14px;">public interface ISomeService1 {
public void some();
}
public class MyThome implements MethodInterceptor{
public Object invoke(MethodInvocation methodInvocation) throws Throwable {
System.out.println("前置 环绕");
methodInvocation.proceed();
System.out.println("后置 环绕");
return null;
}
}
public class SomeService1 implements ISomeService1 {
public void some(){
System.out.println("这是测试 bean 代理");
}
}
</span>
[java] view plain copy
<span style="font-size:14px;"><?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:aop="http://www.springframework.org/schema/aop"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:p="http://www.springframework.org/schema/p"
xsi:schemaLocation="http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context.xsd
">
<!--属性-->
<bean id="some1" class="cn.springAOP2.SomeService1"></bean>
<!--前置-->
<bean id="MyThome1" class="cn.springAOP2.MyThome"></bean>
<bean id ="HuanRao" class="org.springframework.aop.framework.ProxyFactoryBean">
<!--需要增强的对象-->
<property name="target" ref="some1"></property>
<!--需要拦截的方法-->
<property name="interceptorNames" value="MyThome1"></property>
</bean>
</beans>
</span>
环绕增强
最新推荐文章于 2023-02-23 23:27:30 发布