Aop在Spring中的作用
- 提供声明式事务;允许用户自定义切面
- 以下名词需要了解下:
- 横切关注点:跨越应用程序多个模块的方法或功能。即是,与我们业务逻辑无关的,但是我们需要关注的部分,就是横切关注点。如日志 , 安全 , 缓存 , 事务等等 …
- 切面(ASPECT):横切关注点 被模块化 的特殊对象。即,它是一个类。
- 通知(Advice):切面必须要完成的工作。即,它是类中的一个方法。
- 目标(Target):被通知对象。(pointcut:在哪个地方执行)
- 代理(Proxy):向目标对象应用通知之后创建的对象。
- 切入点(PointCut):切面通知 执行的 “地点”的定义。
- 连接点(JointPoint):与切入点匹配的执行点。
使用Spring实现Aop
【重点】使用AOP织入,需要导入一个依赖包!
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.9.4</version>
</dependency>
AOP实现方式一:使用Spring的API接口
- 业务接口
public interface UserService {
int add();
public void delete();
public void update();
public void select();
}
- 业务接口实现类
public class UserServiceImpl implements UserService{
@Override
public int add() {
System.out.println("增加了一个用户");
return 1;
}
@Override
public void delete() {
System.out.println("删除了一个用户");
}
@Override
public void update() {
System.out.println("修改了一个用户");
}
@Override
public void select() {
System.out.println("查询了一个用户");
}
}
- 前置增强类
public class Log1 implements MethodBeforeAdvice {
// method : 要执行的目标对象的方法
//args : 被调用的方法的参数
//target : 目标对象
@Override
public void before(Method method, Object[] args, Object target) throws Throwable {
System.out.println(target.getClass().getName()+"的"+method.getName()+"被执行了");
}
}
- 后置增强类
public class Log2 implements AfterReturningAdvice {
//returnValue 返回值
//method被调用的方法
//args 被调用的方法的对象的参数
//target 被调用的目标对象
@Override
public void afterReturning(Object returnValue, Method method, Object[] arg, Object target) throws Throwable {
System.out.println("执行了"+method.getName()+"返回结果:"+ returnValue);
}
}
- applicationContext.xml 中注册所有类 , 并实现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 https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册bean-->
<bean id="userservice" class="com.qk.service.UserServiceImpl"></bean>
<bean id="log1" class="com.qk.log.Log1"></bean>
<bean id="log2" class="com.qk.log.Log2"></bean>
<!--aop的配置-->
<aop:config>
<!--切入点 expression:表达式匹配要执行的方法-->
<aop:pointcut id="pointcut" expression="execution(* com.qk.service.UserServiceImpl.*(..))"/>
<!--执行环绕; advice-ref执行方法 . pointcut-ref切入点-->
<aop:advisor advice-ref="log1" pointcut-ref="pointcut"></aop:advisor>
<aop:advisor advice-ref="log2" pointcut-ref="pointcut"></aop:advisor>
</aop:config>
</beans>
- 测试
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理代理的是一类接口,返回的是代理类
UserService userservice = context.getBean("userservice", UserService.class);
userservice.add();
}
AOP实现方式二:自定义来实现AOP
- 自定义要切入的类,不要实现任何接口
- 和方式一一样的业务接口
public interface UserService {
int add();
public void delete();
public void update();
public void select();
}
- 和方式一一样的业务接口实现类
public class UserServiceImpl implements UserService{
@Override
public int add() {
System.out.println("增加了一个用户");
return 1;
}
@Override
public void delete() {
System.out.println("删除了一个用户");
}
@Override
public void update() {
System.out.println("修改了一个用户");
}
@Override
public void select() {
System.out.println("查询了一个用户");
}
}
- 自定义的切入类,不需要继承和实现任何方法
public class Logs {
public void before(){
System.out.println("---------方法执行前---------");
}
public void after(){
System.out.println("---------方法执行后---------");
}
}
- applicationContext.xml 中注册自定义类和接口实现类 , 使用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 https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册bean-->
<bean id="userservice" class="com.qk.service.UserServiceImpl"></bean>
<!--方式二:自定义类-->
<bean id="logs" class="com.qk.log.Logs"></bean>
<aop:config>
<!--自定义切面,ref 要引用的类-->
<aop:aspect ref="logs">
<!--切入点-->
<aop:pointcut id="point" expression="execution(* com.qk.service.UserServiceImpl.*(..))"/>
<!--通知-->
<aop:before method="before" pointcut-ref="point"></aop:before>
<aop:after method="after" pointcut-ref="point"></aop:after>
</aop:aspect>
</aop:config>
</beans>
- 和方式一一样的测试类
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理代理的是接口,返回的是代理类
UserService userservice = context.getBean("userservice", UserService.class);
userservice.delete();
userservice.add();
userservice.update();
userservice.select();
}
AOP实现方式三:使用注解实现AOP
- 和方式一一样的业务接口
public interface UserService {
int add();
public void delete();
public void update();
public void select();
}
- 和方式一一样的业务接口实现类
public class UserServiceImpl implements UserService{
@Override
public int add() {
System.out.println("增加了一个用户");
return 1;
}
@Override
public void delete() {
System.out.println("删除了一个用户");
}
@Override
public void update() {
System.out.println("修改了一个用户");
}
@Override
public void select() {
System.out.println("查询了一个用户");
}
}
- 切入类:用注解方式实现
//使用注解方式实现AOP
@Aspect
public class AnnotationPointCut {
@Before("execution(* com.qk.service.UserServiceImpl.*(..))")
public void before(){
System.out.println("=====方法执行前=====");
}
@After("execution(* com.qk.service.UserServiceImpl.*(..))")
public void after(){
System.out.println("=====方法执行后=====");
}
//在环绕增强中,可以给定一个参数,代表我们要获取处理切入的点
@Around("execution(* com.qk.service.UserServiceImpl.*(..))")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("=====环绕前=====");
//谁被执行了
//获取签名
Signature signature = joinPoint.getSignature();
System.out.println("signature:"+signature);
Object proceed = joinPoint.proceed();
System.out.println("=====环绕后=====");
}
}
- applicationContext.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" 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 https://www.springframework.org/schema/aop/spring-aop.xsd">
<!--注册bean-->
<bean id="userservice" class="com.qk.service.UserServiceImpl"></bean>
<bean id="annotationpointcut" class="com.qk.log.AnnotationPointCut"></bean>
<!--开启注解支持-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
- 测试
@Test
public void test01(){
ApplicationContext context = new ClassPathXmlApplicationContext("applicationContext.xml");
//动态代理代理的是接口,返回的是代理类
UserService userservice = context.getBean("userservice", UserService.class);
userservice.delete();
}