一、AOP面向切面
1、什么是AOP
1、面向切面编程,利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
2、不通过修改源代码方式,在主干功能里面添加新功能。
3、将日志记录,性能统计,安全控制,事务处理,异常处理等代码从业务逻辑代码中划分出来,通过对这些行为的分离,
我们希望可以将它们独立到非指导业务逻辑的方法中,进而改变这些行为的时候不影响业务逻辑的代码。
2、AOP底层原理 (使用动态代理)
a、有接口情况,使用JDK动态代理
note:通过接口实现类代理对象,增强类的方法
b、没有接口情况,使用CGLIB动态代理
note:创建子类的代理对象,增强类的方法
c、使用JDK动态代理,使用proxy类里面的方法创建代理对象
note :调用proxy类中的 newProxyInstance方法
方法有三个参数:
a、类加载器
b、增强方法所在的类,这个类实现的接口,支持多个接口
c、实现这个接口InvocationHandler,创建代理对象,写增强的方法
AOP底层动态代理过程:
3、AOP操作术语
4、AOP操作准备工作
a、Spring框架一般都是基于AspectJ实现AOP操作
什么是AspectJ:
AspectJ 不是Spring组成部分,独立AOP框架,一般把AspectJ和Spring框架一起使用,进行AOP操作
b、基于AspectJ实现AOP操作
基于xml配置文件实现
基于注解方式实现 (项目常用)
c、在项目工程里面引入AOP相关依赖
d、切入点表达式
切入点表达式作用:知道对那个类里面的那个方法进行增强
语法结构:
execution([ 权限修饰符 ][ 返回类型 ][ 类全路径][ 方法名称 ]([参数列表]))
举例1:对com.yinhai.mapper.Kae01Mapper类里面的page进行增强
execution (* com.yinhai.mapper.Kae01Mapper.page(..))
举例2:对com.yinhai.mapper.Kae01Mapper类里面的所有方法进行增强
execution (* com.yinhai.mapper.Kae01Mapper.*(..))
举例3:对com.yinhai.mapper包里面的所有类,类里面的所有方法进行增强
execution (* com.yinhai.mapper.*.*(..))
e、基于AspectJ注解实现AOP操作
1、创建类,在类里面定义方法
@Component
public class User {
public void add(){
System.out.println("add......");
}
}
2、创建增强类(编写增强逻辑)
@Aspect //note:生成代理对象
@Component
public class UserProxy {
@Pointcut(value = "execution(* com.yinhai.spring5.aopanno.User.add(..))")
public void aspectCommon(){
}
// @Before注解标识作为前置通知
@Before(value = "aspectCommon()")
public void before(){
System.out.println("before......");
}
// 后置通知
@After(value = "aspectCommon()")
public void after(){
System.out.println("after......");
}
// 返回值之后执行
@AfterReturning(value = "aspectCommon()")
public void afterReturning(){
System.out.println("afterReturning......");
}
// 出现异常之后执行
@AfterThrowing(value = "aspectCommon()")
public void afterThrowing(){
System.out.println("afterThrowing......");
}
// 环绕通知
@Around(value = "aspectCommon()")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("环绕之前......");
// 被增强的方法执行
joinPoint.proceed();
System.out.println("环绕之后......");
}
}
3、进行通知的配置
a、在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:context="http://www.springframework.org/schema/context"
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/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop " target="_blank">http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 开启注解扫描 -->
<context:component-scan base-package="com.yinhai.spring5.anpanno"/>
</beans>
b、使用注解创建User和UserProxy对象
@Component
public class User {}
@Component
public class UserProxy {}
c、在增强类上面添加注解@Aspect
@Aspect //note:生成代理对象
@Component
public class UserProxy {}
d、在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:context="http://www.springframework.org/schema/context"
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/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop " target="_blank">http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 开启Aspect生成代理对象 -->
<aop:aspectj-autoproxy/>
</beans>
@Test
public void testAopAnno(){
ApplicationContext context = new ClassPathXmlApplicationContext("bean.xml");
User user = context.getBean("user", User.class);
user.add();
}
4、相同切入点抽取
@Aspect //note:生成代理对象
@Component
@Order(2)
public class UserProxy {
@Pointcut(value = "execution(* com.yinhai.spring5.anpanno.User.add(..))")
public void aspectCommon(){
}
// @Before注解标识作为前置通知
@Before(value = "aspectCommon()")
public void before(){
System.out.println("before......");
}
// 后置通知
@After(value = "aspectCommon()")
public void after(){
System.out.println("after......");
}
// 返回值之后执行
@AfterReturning(value = "aspectCommon()")
public void afterReturning(){
System.out.println("afterReturning......");
}
// 出现异常之后执行
@AfterThrowing(value = "aspectCommon()")
public void afterThrowing(){
System.out.println("afterThrowing......");
}
// 环绕通知
@Around(value = "aspectCommon()")
public void around(ProceedingJoinPoint joinPoint) throws Throwable {
System.out.println("环绕之前......");
// 被增强的方法执行
joinPoint.proceed();
System.out.println("环绕之后......");
}
}
5、有多个增强类对同一个方法进行增强,设置增强类优先级
note:在增强类上面添加注解@Order(数字类型值),数字类型值越小优先级越高
@Aspect
@Component
@Order(1)
public class PersonProxy {
@Before("execution(* com.yinhai.spring5.anpanno.User.add(..))")
public void before(){
System.out.println("beforeRunning......");
}
}
beforeRunning......
环绕之前......
before......
add......
环绕之后......
after......
afterReturning......
f、基于AspectJxml配置文件实现AOP操作
1、创建被增强类与增强类
public class Book {
public void buy(){
System.out.println("buy............");
}
}
public class BookProxy {
public void before(){
System.out.println("before............");
}
}
2、在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:context="http://www.springframework.org/schema/context"
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/context http://www.springframework.org/schema/context/spring-context.xsd
http://www.springframework.org/schema/aop " target="_blank">http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 创建对象 -->
<bean id="book" class="com.yinhai.spring5.aopxml.Book"/>
<bean id="bookProxy" class="com.yinhai.spring5.aopxml.BookProxy"/>
<!-- 配置aop增强 -->
<aop:config>
<!-- 切入点 -->
<aop:pointcut id="p" expression="execution(* com.yinhai.spring5.aopxml.Book.buy(..))"/>
<!-- 配置切面 -->
<aop:aspect ref="bookProxy">
<!-- 增强作用在具体的方法上 -->
<aop:before method="before" pointcut-ref="p"/>
</aop:aspect>
</aop:config>
</beans>
@Test
public void testAopXml(){
ApplicationContext context = new ClassPathXmlApplicationContext("bean2.xml");
Book book = context.getBean("book", Book.class);
book.buy();
}
g、完全注解开发实现AOP
note :创建配置类,不需要创建xml配置文件(代替xml配置文件)
@Configuration
@ComponentScan(basePackages = {"com.yinhai.spring5"})
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class AopConfig {
}