文章目录
什么是AOP
1、面向切面编程,利用AOP可以对业务逻辑的各个部分进行隔离,从而是的业务逻辑各部分之间的耦合度降级,提高代码的可用性,同时提高了开发的效率。
通俗描述:不修改源代码的情况下载主干功能里面添加新功能
登录例子说明
例:
AOP底层原理
**AOP底层使用动态代理。**实现动态代理有两种情况。
有接口的情况,使用了JDK动态代理
如图:
没有接口的情况,使用CGLIB动态代理
如图:
测试动态代理–有接口情况
1、 使用JDK动态代理实际上是使用Proxy类里面的方法来创建代理对象
1.1 调用Proxy里面的newProxyInstance方法来创建接口的搭理实现类
如图:1.2 编写代码测试
(1)创建接口,定义方法
(2)创建接口实现类,实现方法
(3)使用Proxy创建接口代理对象
AOP操作术语
1、连接点
类里面哪些方法可以被增强,这些方法就称为连接点
2、切入点
实际上真正增强的方法称为切入点
3、通知(增强)
实际增强功能的逻辑部分称为通知
分类:
前置通知—@Befor
后置通知—@AfterReturning
环绕通知—@Around
异常通知—@AfterThrowing
最终通知—@After
4、切面
把通知应用到切入点的过程
AOP操作—没有接口情况
Apring框架一半是基于AspectJ来实现AOP操作。
AspectJ是一个独立的框架,不是spring组成部分。一般把spring和AspectJ结合使用实现AOP操作。
基于AspectJ实现AOP操作
(1)基于xml配置文件实现
(2) 基于注解方式实现
案例演示基于注解实现操作
1、创建被增强类和增强类,并在类里定义相对应的方法
public class Book {
public void buy(){
System.out.println("买一本关于Java编程的书籍");
}
public void read(){
System.out.println("阅读XX书籍");
}
}
public class BookProxy {
public void talk(){
System.out.println("请问要购买什么书?");
}
}
2、进行配置—开启注解扫描
<?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">
<!--开启组件扫描:context-->
<context:component-scan base-package="cn.tedu.spring5"></context:component-scan>
</beans>
3、创建两个类的对象
4、在增强类上面添加注解@Aspect
@Component
@Aspect//生成代理对象
public class BookProxy {
@Before(value = "execution(* cn.tedu.spring5.entity.Book.buy(..))")
public void talk(){
System.out.println("请问要购买什么书?");
}
}
5、在配置文件中开启生成代理对象
6、配置不同类型的通知–在通知方法上添加通知类型注解,使用切入点表达式配置
<?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
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!--开启组件扫描:context-->
<context:component-scan base-package="cn.tedu.spring5"></context:component-scan>
<!--开启Aspect生成代理对象:aop-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
</beans>
7、测试
@Test
public void test01(){
ApplicationContext context =
new ClassPathXmlApplicationContext("bean2.xml");
Book book = context.getBean("book", Book.class);
book.buy();
}
补充:切入点表达式
1、作用:知道是对哪个类那个方法进行增强
2、语法结构:execution([权限修饰符] [返回类型] [类全路径] [ 方法名称]([参数列表]))
相同切入点提取
//相同切入点的提取
@Pointcut(value = "execution(* cn.tedu.spring5.entity.Book.buy(..))")
public void point(){}
同一方法可以有多个增强类,并且可以通过@Order(参数)设置优先级。
参数值越小优先级越高
完全注解开发
使用注解完成配置文件中的功能
@Configuration //将普通类表示为配置类
@ComponentScan(basePackages = {"cn.tedu.spring5.entity"})//开启注解扫描
@EnableAspectJAutoProxy(proxyTargetClass = true)//开启AspectJ生成代理对象
public class ConfigAOP {
}
配置文件实现AspectJ创建代理对象
1、创建两个类,增强类和被增强类,创建方法。
2、在spring配置文件中创建两个类对象
<bean id="teacher" class="cn.tedu.spring5.entity.Teacher"></bean>
<bean id="teacherProxy" class="cn.tedu.spring5.entity.TeacherProxy"></bean>
3、配置切入点
引入aop名称空间
<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">
配置aop增强
<aop:config>
<!--切入点-->
<aop:pointcut id="p" expression="execution(* cn.tedu.spring5.entity.Teacher.teach(..))"/>
<!--配置切面-->
<aop:aspect ref="teacherProxy">
<!--把增强作用到具体的方法上-->
<aop:before method="before" pointcut-ref="p"></aop:before>
</aop:aspect>
</aop:config>