Java绝地求生—Spring AOP面向切面编程
背景
在多个模块的程序中添加某功能,例如log,若直接插入log代码会造成大量重复。且在删除改功能时需要将每一处调用删除。AOP(Aspect Oriented Programming)可通过预编译方式和运行期动态代理实现在不修改源代码的情况下给程序添加功能。
动态代理
在创建代理对象时,通过构造器塞入一个目标对象(被代理对象),然后在代理对象的方法内部调用目标对象同名方法,并在调用新功能的代码。此时,代理对象 = 增强代码 + 目标对象(原对象)。动态代理通过反射实现。
构建被代理对象
创建以下文件:
- UserService接口
public interface UserService {
void add();
void delete();
void update();
void query();
}
- 实现类UserServiceImpl(真实角色)
public class UserServiceImpl implements UserService{
@Override
public void add() {
System.out.println("增加用户");
}
@Override
public void delete() {
System.out.println("删除用户");
}
@Override
public void update() {
System.out.println("修改用户");
}
@Override
public void query() {
System.out.println("查询用户");
}
}
自动生成代理
创建ProxyInvocationHandler类,实现InvocationHandler接口,该类是代理实例所关联的调用处理程序类,可自动生成代理实例(代理角色)。
public class ProxyInvocationHandler implements InvocationHandler {
private Object target;
public void setTarget(Object target) {
this.target = target;
}
public Object getProxy() {
return Proxy.newProxyInstance(this.getClass().getClassLoader(), target.getClass().getInterfaces(), this);
}
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
System.out.println("方法执行前");
Object result = method.invoke(target, args);
System.out.println("方法执行后");
return result;
}
}
调用动态代理
创建Client类
public class Client {
public static void main(String[] args) {
UserService userService=new UserServiceImpl();
ProxyInvocationHandler proxyInvocationHandler = new ProxyInvocationHandler();
proxyInvocationHandler.setTarget(userService);
UserService proxy = (UserService) proxyInvocationHandler.getProxy();
proxy.query();
}
}
执行结果
Spring方法
导入aspectjweaver依赖
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.7</version>
</dependency>
在service包下复用UserService接口和实现类UserServiceImpl的代码。
方式一:使用Spring的API接口
在log包下创建文件 1.BeforeLog类,实现MethodBeforeAdvice接口 表示在方法执行前执行log方法
public class BeforeLog implements MethodBeforeAdvice {
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName() + "的" + method.getName() + "被执行");
}
}
2.AfterLog类,实现AfterReturningAdvice接口 表示在方法执行后执行log方法
public class AfterLog implements AfterReturningAdvice {
public void afterReturning(Object returnValue, Method method, Object[] args, Object target) throws Throwable {
System.out.println("执行了" + method.getName() + "方法,返回结果为:" + returnValue);
}
}
在resources包下编写配置文件applicationContext.xml,将以上类的bean注册到Spring中,并配置AOP。
<?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"
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">
<bean id="userService" class="service.UserServiceImpl"/>
<bean id="log" class="log.BeforeLog"/>
<bean id="afterLog" class="log.AfterLog"/>
<aop:config>
<aop:pointcut id="pointcut" expression="execution(* service.UserServiceImpl.*(..))"/>
<aop:advisor advice-ref="log" pointcut-ref="pointcut"/>
<aop:advisor advice-ref="afterLog" pointcut-ref="pointcut"/>
</aop:config>
</beans>
编写测试类MyTest
public class MyTest {
public static void main(String[] args) {
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
UserService userService = (UserService) context.getBean("userService");
userService.select();
}
}
执行结果
方式二:使用自定义类
在diy包下创建DiyPointCut类
public class DiyPoint {
public void before() {
System.out.println("============方法执行前============");
}
public void after() {
System.out.println("============方法执行后============");
}
}
在resources包下编写配置文件applicationContext.xml,将UserServiceImpl和DiyPointCut的bean注册到Spring中,并配置自定义切面。
<?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"
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">
<bean id="userService" class="service.UserServiceImpl"/>
<bean id="diy" class="diy.DiyPoint"/>
<aop:config>
<aop:aspect ref="diy">
<aop:pointcut id="point" expression="execution(* service.UserServiceImpl.*(..))"/>
<aop:before method="before" pointcut-ref="point"/>
<aop:after method="after" pointcut-ref="point"/>
</aop:aspect>
</aop:config>
</beans>
复用测试类MyTest
方式三:使用注解
在diy包下创建AnnotationPointCut类
@Aspect
public class AnnotationPointCut {
@Before("execution(* service.UserServiceImpl.*(..))")
public void before() {
System.out.println("============方法执行前============");
}
@After("execution(* service.UserServiceImpl.*(..))")
public void after() {
System.out.println("============方法执行后============");
}
@Around("execution(* service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("环绕前");
Object proceed = joinPoint.proceed();
System.out.println("环绕后");
}
}
在resources包下编写配置文件applicationContext.xml,将UserServiceImpl和AnnotationPointCut的bean注册到Spring中,并开启注解支持。
<?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"
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">
<bean id="userService" class="service.UserServiceImpl"/>
<bean id="annotationPointCut" class="diy.AnnotationPointCut"/>
<aop:aspectj-autoproxy proxy-target-class="false"/>
</beans>
复用测试类MyTest
|