面向切面概述
定义
在软件业,AOP为Aspect Oriented Programming的缩写,意为:面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。AOP是OOP的延续,是软件开发中的一个热点,也是Spring框架中的一个重要内容,是函数式编程的一种衍生范型。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
AOP 的作用及优势
作用:在程序运行期间,不修改源码对已有方法进行增强。优势:减少重复代码、提高开发效率、维护方便
AOP 的实现方式
使用动态代理技术
AOP:面向切面的编程。是对面向对象思维的一种补充。
场景:
有一些共同的功能:日志,事物。比如有多个模块下的功能类似,想给每个add方法都添加日志,或者每个添加方法之前开启事物,每个添加方法之后关闭事物。
实现面向切面
1.修改配置文件
<?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-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/aop
http://www.springframework.org/schema/aop/spring-aop.xsd">
<!-- 开启切面注解驱动-->
<aop:aspectj-autoproxy></aop:aspectj-autoproxy>
2.导入AOP的Maven坐标
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjweaver</artifactId>
<version>1.8.7</version>
</dependency>
注解方式
1.创建切面类并在切面类中加入配置(aop ----method----通知类型:表达式 )
创建一个切面类,这个类就是一个切面,既然是一个类,就得spring管理。
package com.xszx.aop;
import org.aspectj.lang.annotation.Aspect;
import org.aspectj.lang.annotation.Before;
import org.aspectj.lang.annotation.Pointcut;
import org.springframework.stereotype.Component;
@Aspect
@Component
public class MyAspect {
@Pointcut("execution(public void com.xszx.service.impl.UserServiceImpl.test())")
public void point(){
}
@Before("point()")
public void before(){
System.out.println("前置通知");
}
}
2.测试
package com.xszx.test;
import com.xszx.controller.UserController;
import org.springframework.beans.factory.BeanFactory;
import org.springframework.context.support.ClassPathXmlApplicationContext;
public class UserTest {
public static void main(String[] args){
BeanFactory beanFactory = new ClassPathXmlApplicationContext("beans.xml");
UserController userController = (UserController) beanFactory.getBean("userController");
userController.test();
}
}
XML方式
1.切面类
只留下方法,把注解全部去掉
package com.xszx.aop;
public class MyAspect {
public void before(){
System.out.println("前置通知");
}
}
2.beans.xml
<bean id="myAspect" class="com.xszx.aop.MyAspect"></bean>
<aop:config>
<aop:aspect id="myAspect" ref="myAspect">
<aop:pointcut id="pointcut" expression="execution(public void com.xszx.service.impl.UserServiceImpl.test())"/>
<aop:before method="before" pointcut-ref="pointcut"/>
</aop:aspect>
</aop:config>
通知类型
通知类型
前置通知
@Before作用:把当前方法看成是前置通知。属性:value:用于指定切入点表达式,还可以指定切入点表达式的引用。
后置通知
@AfterReturning作用:把当前方法看成是后置通知。属性:value:用于指定切入点表达式,还可以指定切入点表达式的引用
环绕通知
@Around作用:把当前方法看成是环绕通知。属性:value:用于指定切入点表达式,还可以指定切入点表达式的引用。
方法之前和之后都执行一下
抛出异常后通知
@AfterThrowing作用:把当前方法看成是异常通知。属性:value:用于指定切入点表达式,还可以指定切入点表达式的引用
正常情况是没有输出
模拟一个异常,就出抛出异常通知。
但是如果try.....catch.....就不会抛出异常通知。因为spring以为异常已经处理了。
最终通知
@After作用:把当前方法看成是最终通知。属性:lue:用于指定切入点表达式,还可以指定切入点表达式的引用
不管有没有异常,都会执行,类似finally
PS:通知是通过Java的动态代理来实现的。动态代理就像UserDaoImpl的秘书。在他真正处理之前之后秘书处理一些事情。
切入点表达式