一、要增加强的类java
package com.test.springadvicetype; import org.springframework.stereotype.Component; import java.text.SimpleDateFormat; import java.util.Date; /** * 服务员类 */ @Component public class Waiter { /** * 服务 * @param name */ public String serve(String name) { System.out.println(name + ",您好,很高兴为您服务。"); SimpleDateFormat format = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss"); return name + ",您好,如今是北京时间" + format.format(new Date()); } /** * 开车 * @param name */ public void driving(String name) { throw new RuntimeException(name + ",您好,禁止酒后驾车!"); } }
二、环绕加强,实现 MethodInterceptor 接口spring
package com.test.springadvicetype.methodinterceptor; import org.aopalliance.intercept.MethodInterceptor; import org.aopalliance.intercept.MethodInvocation; import org.springframework.stereotype.Service; /** * 环绕加强 */ @Service public class SpringMethodInterceptor implements MethodInterceptor { @Override public Object invoke(MethodInvocation invocation) throws Throwable { // 前置加强 System.out.println("前置加强执行了"); // 经过反射机制调用目标方法 Object obj = invocation.proceed(); // 后置加强 System.out.println("后置加强执行了"); return obj; } }
三、xml,spring-chapter3-springaoptype.xmlide
<?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" 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"> <!-- 开启注解扫描 --> <context:component-scan base-package="com.test.springadvicetype"/> </beans>
四、运行测试代码测试
package com.test.springadvicetype.methodinterceptor; import com.test.springadvicetype.Waiter; import org.springframework.aop.framework.ProxyFactory; import org.springframework.context.ApplicationContext; import org.springframework.context.support.ClassPathXmlApplicationContext; /** * Spring环绕加强测试 */ public class SpringMethodInterceptorDemo { public static void main(String[] args) { System.out.println("Spring环绕加强测试"); System.out.println("==========我是分割线=========="); ApplicationContext context = new ClassPathXmlApplicationContext("classpath:spring-chapter3-springaoptype.xml"); Waiter waiter = (Waiter) context.getBean("waiter"); SpringMethodInterceptor advice = (SpringMethodInterceptor) context.getBean("springMethodInterceptor"); //Spring提供的代理工厂 ProxyFactory pf = new ProxyFactory(); //设置代理目标 pf.setTarget(waiter); pf.addAdvice(advice); //生成代理实例 Waiter proxy = (Waiter)pf.getProxy(); proxy.serve("Michael"); System.out.println("==========我是分割线=========="); proxy.serve("Tommy"); } }
五、运行结果spa
Spring环绕加强测试 ==========我是分割线========== 前置加强执行了 Michael,您好,很高兴为您服务。 后置加强执行了 ==========我是分割线========== 前置加强执行了 Tommy,您好,很高兴为您服务。 后置加强执行了