AOP(Aspect Oriented Programming):面向切面编程,通过预编译方式和运行期间动态代理实现程序功能的统一维护的一种技术。利用AOP可以对业务逻辑的各个部分进行隔离,从而使得业务逻辑各部分之间的耦合度降低,提高程序的可重用性,同时提高了开发的效率。
通俗描述就是:不通过修改变源代码的方式,在主干功能里面添加新功能
AOP底层使用动态代理方式
(1)有两种情况的动态代理,基于接口的动态代理和基于子类的动态代理
第一种 有接口的情况,使用JDK动态代理
第二种 没有接口的情况,使用CGLIB动态代理
jdk动态代理只能基于接口,代理生成的对象只能赋值给接口变量,而Cglib就不存在这个问题,Cglib是通过生成子类来实现的,代理对象既可以赋值给实现类,又可以赋值给接口。Cglib速度比jdk动态代理更快,性能更好。
#AOP(JDK动态代理)
1、使用JDK动态代理,使用Proxy类里边的方法创建代理对象
(1)调用newProxyInstance方法
方法里面有三个参数
第一个参数,类加载器
第二个参数:增强方法所在的类,这个类实现的接口,支持多个接口
第三个参数:Interface InvocationHandler,实现这个接口InvocationHandler,创建代理对象,写增强方法
2、JDK动态代理代码
(1)创建接口,定义方法
public interface UserDao {
public int add(int a,int b);
public String update(String id);
}
(2)创建接口实现类,将接口方法实现
public class UserDaoImpl implements UserDao {
@Override
public int add(int a, int b) {
return a+b;
}
@Override
public String update(String id) {
return id;
}
}
(3)使用Proxy创建接口代理对象
public class JDKProxy {
public static void main(String[] args) {
//创建接口实现类代理对象
Class[] interfaces = {UserDao.class};
// Proxy.newProxyInstance(JDKProxy.class.getClassLoader(), interfaces, new InvocationHandler() {
// //InvocationHandler是一个接口,使用匿名内部类对其接口方法进行实现;也可以单独写个类实现该接口,在new实现类的对象
// @Override
// public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
// return null;
// }
// });
//创建类,实现InvocationHandler接口的方式,类加载器:JDKProxy.class.getClassLoader();接口:interfaces;
UserDaoImpl userDao = new UserDaoImpl();
UserDao dao = (UserDao)Proxy.newProxyInstance(JDKProxy.class.getClassLoader(), interfaces, new UserDaoProxy(userDao));
String result = dao.update("a");
System.out.println("result:"+result);
}
}
//创建代理对象代码
class UserDaoProxy implements InvocationHandler {
//1 创建的是谁的代理对象就把谁传过来
//有参构造进行传递
private Object obj;
public UserDaoProxy(Object obj){
this.obj=obj;
}
//增强逻辑
@Override
public Object invoke(Object proxy, Method method, Object[] args) throws Throwable {
if (method.getName().equals("add")) {
//方法之前做一个处理
System.out.println("add方法之前执行" + method.getName() + ":传递参数" + Arrays.toString(args));
//被增强的方法执行
Object res = method.invoke(obj, args);
//方法之后做一个处理
System.out.println("add方法之后执行" + obj);
return res;
}else {
//方法之前做一个处理
System.out.println("update方法之前执行" + method.getName() + ":传递参数" + Arrays.toString(args));
//被增强的方法执行
Object res = method.invoke(obj, args);
//方法之后做一个处理
System.out.println("update方法之后执行" + obj);
return res;
}
}
}
1、Spring框架中,一般基于AspectJ实现AOP操作
AspectJ:不是Spring组成部分,独立的AOP框架,一般把AspectJ和Spring框架一起使用,进行AOP操作
2、基于AspectJ实现AOP操作
(1)基于xml配置文件实现
(2)基于注解方式实现(一般使用注解方式较多)
3、在项目工程里面引入AOP相关依赖(Spring包里面)
4、切入点的表达式
(1)切入点表达式的作用:知道要对哪个类里面的哪个方法进行增强
(2)语法结构:execution([权限修饰符] [返回类型] [类全路径] [方法名称]([参数列表]))
例子:对com.lyy.dao.BookDao类里面add方法进行增强,其切入点表达式:
execution(* com.lyy.dao.BookDao.add(..))
*表示任意修饰符(private public 等待),返回类型可以省略不写,add中的…表示方法中的参数。
对com.lyy.dao.BookDao类里面所有方法进行增强,切入点表达式:execution(* com.lyy.dao.BookDao.*(..))
。
对com.lyy.dao包里面的所有类,类里面的所有方法进行增强:execution(* com.lyy.dao.*.*(..))
。
1、创建类,在类里面定义方法,对类里面的方法进行增强
public class User {
public void add(){
System.out.println("add......");
}
}
2、创建增强类(编写增强的逻辑)
(1)在增强的类里面,创建方法,让不同的方法代表不同的通知类型
//增强的类
public class UserProxy {
//前置通知
public void before(){
System.out.println("before......");
}
}
3、进行通知的配置
(1)在Spring的配置文件中,开启注解扫描
<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:component-scan base-package="com.lyy.spring5.aopanno">context:component-scan>
(2)使用注解创建User和UserProxy对象
在User和UserProxy类上添加注解 @Component创建类的对象
(4)在Spring配置文件中开启生成代理对象
该语句表示查找类中的@Aspect注解,并生成代理对象
4、配置不同类型的通知(前置、后置、环绕、异常、最终)
(1)在增强类里面,将作为通知(增强)的方法上面添加通知类型注解,并且使用切入点表达着配置
//增强的类
//使用注解创建UserProxy对象
@Component
//增强类添加注解生成代理对象
@Aspect
public class UserProxy {
//前置通知,添加注解,声明是前置通知
//<----切入点表达式,表示对某个类里面的某个方法进行增强
//@Before注解表示作为前置通知
@Before(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void before(){
System.out.println("before......");
}
}
进行测试并输出结果
public class TestAop {
@Test
public void testAopAnno(){
//加载配置文件
ApplicationContext context = new ClassPathXmlApplicationContext("bean1.xml");
//得到对象
User user = context.getBean("user", User.class);
//调用user中的add方法,看前置通知效果
user.add();
}
}
//增强的类
//使用注解创建UserProxy对象
@Component
//增强类添加注解生成代理对象
@Aspect
public class UserProxy {
//前置通知,添加注解,声明是前置通知
//@Before注解表示作为前置通知
@Before(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void before(){
System.out.println("before......");
}
//最终通知,在方法执行之后执行
@After(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void after(){
System.out.println("after....");
}
//后置通知(返回通知) 在方法返回结果之后执行,当有异常时不执行
@AfterReturning(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void afterReturning(){
System.out.println("afterReturning....");
}
//异常通知,增强方法执行后异常才会执行
@AfterThrowing(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void afterThrowing(){
System.out.println("afterThrowing....");
}
//环绕通知,在增强方法之前和之后都会执行
@Around(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void around(ProceedingJoinPoint proceedingJoinPoint) throws Throwable{
System.out.println("环绕之前......");
//被增强的方法执行
proceedingJoinPoint.proceed();
System.out.println("环绕之后......");
}
}
6、公共切入点抽取(对相同的切入点进行抽取)
使用 @Pointcut 注解对公共切入点进行抽取,后续的通知中要使用该切入点直接使用注解对应的方法名称即可。
7、有多个曾强类,对同一个方法进行增强,可以设置增强类的优先级
例如UserProxy类和PersonProxy类都对User类中的add方法进行曾强
(1)在增强类上面添加注解 @Order(数字类型值),数字类型值越小优先级越高
@Component
@Aspect
@Order(1)
public class PersonProxy {
//@Before注解表示作为前置通知
@Before(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void before(){
System.out.println("Person before......");
}
}
@Component
//增强类添加注解生成代理对象
@Aspect
@Order(3)
public class UserProxy {
//相同切入点抽取
@Pointcut(value = "execution(* com.lyy.spring5.aopanno.User.add(..))")
public void pointdemo(){
}
//前置通知,添加注解,声明是前置通知
//@Before注解表示作为前置通知
@Before(value = "pointdemo()")
public void before(){
System.out.println("before......");
}
}
8、完全使用注解开发
(1)创建配置类,不需要创建xml配置文件
//完全注解开发
@Configuration
//开启注解扫描
@ComponentScan(basePackages = {"com.lyy"})
//生成代理对象
@EnableAspectJAutoProxy(proxyTargetClass = true)
public class ConfigAop {
}
1、创建两个类,增强类和被增强类,创建方法
//被增强类
public class Book {
public void buy(){
System.out.println("buy.....");
}
}
public class BookProxy {
public void before(){
System.out.println("before.....");
}
}
2、在Spring配置文件中创建两个类对象和在Spring配置文件中配置切入点
<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">
<bean id="book" class="com.lyy.spring5.aopxml.Book">bean>
<bean id="bookProxy" class="com.lyy.spring5.aopxml.BookProxy">bean>
<aop:config>
<aop:pointcut id="p" expression="execution(* com.lyy.spring5.aopxml.Book.buy())"/>
<aop:aspect ref="bookProxy">
<aop:before method="before" pointcut-ref="p">aop:before>
aop:aspect>
aop:config>
beans>