当前位置:   article > 正文

SpringAOP(面向切面编程)【看这一片文章就够了】_pointcut 任意层级package

pointcut 任意层级package

目录

一、SpringAOP

1.概述

1 什么是AOP

2 AOP的作用

3 AOP的底层

4 AOP相关概念

5 AOP开发前要明确的事情

2. AOP入门

小结:

3. AOP详解-通知类型

1 通知类型

2 通知方法里获取目标方法信息(备用)

3 小结

4. AOP详解-切入点表达式

1 execution

2 @annotation

3 抽取公用切入点表达式

4 小结

5. AOP详解-通知执行顺序

6. AOP练习

7. 小结


一、SpringAOP

1.概述

AOP是用于简化动态代理的使用

1 什么是AOP

  • AOP:Aspect Oriented Programming,面向切面编程。是通过预编译方式(aspectj)或者运行期动态代理(Spring)实现程序功能的统一维护的技术。

  • AOP是OOP(Object Oriented Programming)的技术延续,是软件开发中的一个热点,也是Spring中的一个重要内容。利用AOP可以实现对业务逻辑各个部分之间的隔离,从而使得业务逻辑各部分之间的耦合性降低,提高程序的可重用性,同时提高了开发效率。

  1. 面试问题:
  2. Spring的两大核心是什么:IoC和AOP
  3. 分别有什么作用
  4. IoC:控制反转,目的用于解耦,底层使用的技术是反射+工厂模式
  5. AOP:面向切面编程,目的是在不修改目标对象源码的情况下,进行功能增强,底层使用的是动态代理技术

2 AOP的作用

  • 作用:不修改源码的情况下,进行功能增强,通过动态代理实现的

  • 优势:减少重复代码,提高开发效率,降低耦合度方便维护

  • 比如:给功能增加日志输出, 事务管理的功能

3 AOP的底层

实际上,Spring的AOP,底层是通过动态代理实现的。在运行期间,通过代理技术动态生成代理对象,代理对象方法执行时进行功能的增强介入,再去调用目标方法,从而完成功能增强。

  • 常用的动态代理技术有:

    • JDK的动态代理:基于接口实现的

    • cglib的动态代理:基于子类实现的

  • Spring的AOP采用了哪种代理方式?

    • 如果目标对象有接口,就采用JDK的动态代理技术

    • 如果目标对象没有接口,就采用cglib技术

4 AOP相关概念

  • 目标对象(Target):要代理的/要增强的目标对象。

  • 代理对象(Proxy):目标对象被AOP织入增强后,就得到一个代理对象

  • 连接点(JoinPoint):能够被拦截到的点,在Spring里指的是方法。能增强的方法

  • 切入点(PointCut):要对哪些连接点进行拦截的定义。要增强的方法

  • 通知/增强(Advice):拦截到连接点之后要做的事情。如何增强,额外添加上去的功能和能力

  • 切面(Aspect):是切入点和通知的结合。 告诉Spring的AOP:要对哪个方法,做什么样的增强

  • 织入(Weaving):把增强/通知 应用到 目标对象来创建代理对象的过程

5 AOP开发前要明确的事情

有哪些事情需要我们完成的:

  • 目标类及里边的方法:完成功能的目标类。

  • 编写切面类,里边配置:

    • 切入点:要对谁进行增强

    • 通知:要做什么样的增强

有哪些事情是由SpringAOP完成的:

  • 代理对象:由SpringAOP根据我们的配置,帮我们生成的

  • 织入:根据切面配置生成代理对象的过程

2. AOP入门

需求

统计Service层每个方法的执行耗时

分析

目标类:Service层的所有类

编写切面类:

  • 切入点:Service层里所有的方法

  • 通知:计算方法执行耗时,打印出来

实现

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-aop</artifactId>
  4. </dependency>

Demo01AopAspect

  • 类上加@Component

  • 类上加@Aspect 声明一下这个类是切面类

  1. package com.itheima.aop;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.Around;
  4. import org.aspectj.lang.annotation.Aspect;
  5. import org.springframework.stereotype.Component;
  6. @Aspect
  7. @Component
  8. public class Demo01AopAspect {
  9. @Around("execution(public * com.itheima.service.impl.*.*(..))")
  10. public Object executeTime(ProceedingJoinPoint pjp) throws Throwable {
  11. long start = System.currentTimeMillis();
  12. //调用目标方法
  13. Object res = pjp.proceed();
  14. long end = System.currentTimeMillis();
  15. System.out.println(pjp.getSignature() + "方法耗时:" + (end - start) + "毫秒");
  16. return res;
  17. }
  18. }

测试

打开浏览器访问 http://localhost:8080/depts

可看到控制台输出了执行时间

小结:

AOP的使用步骤:

  1. 添加依赖:spring-boot-starter-aop

  2. 编写切面类:类上要加 @Component, @Aspect

    类里编写通知方法:要额外增加上去的功能

    方法上加注解 @Around("切入点表达式")

3. AOP详解-通知类型

1 通知类型

Spring的AOP支持以下5种通知类型:

  1. package com.itheima.aop;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.stereotype.Component;
  5. /**
  6. * 当前类是一个切面配置类:
  7. * 类上加@Component:当前类对象必须交给Spring进行管理。不给Spring管理,Spring就不能增强
  8. * 类上加@Aspect:告诉Spring,这个类是切面配置类
  9. * 需求:
  10. * 对Service层的每个方法统计执行时间
  11. */
  12. @Aspect
  13. @Component
  14. public class Demo01Aspect {
  15. /**
  16. * 方法上加的注解:@Around("切入点表达式"),用于选择对哪些方法进行增强
  17. * @param pjp 目标方法的信息,被增强的那个方法
  18. * @return
  19. */
  20. @Around("execution(public * com.itheima.service.*.*(..))")
  21. public Object executeTime(ProceedingJoinPoint pjp) throws Throwable {
  22. long start = System.currentTimeMillis();
  23. //调用目标方法,得到返回值
  24. Object res = pjp.proceed();
  25. long end = System.currentTimeMillis();
  26. System.out.println("目标方法执行耗时:" + (end - start) + "毫秒");
  27. return res;
  28. }
  29. /**
  30. * 需求:要在Service的每个方法执行之前,先输出一句话:前置通知执行了
  31. * 分析:
  32. * 切入点:要对谁增强,Service的所有方法
  33. * 通知:要额外增加的功能,输出“前置通知执行了”
  34. * 通知类型:要什么时候进行增强,在目标方法执行之前
  35. */
  36. @Before("execution(public * com.itheima.service.*.*(..))")
  37. public void before(){
  38. System.out.println("前置通知执行了");
  39. }
  40. /**
  41. * 需求:要在Service的每个方法执行抛出异常时,输出一句话:异常通知执行了
  42. * 分析:
  43. * 切入点:要对谁增强,Service的所有方法
  44. * 通知:要额外增加的功能,输出“异常通知执行了”
  45. * 通知类型:要什么时候进行增强,在目标方法执行抛出异常之后
  46. */
  47. @AfterThrowing("execution(public * com.itheima.service.*.*(..))")
  48. public void afterThrowing(){
  49. System.out.println("异常通知执行了");
  50. }
  51. /**
  52. * 需求:要在Service的每个方法正常执行完成之后,输出一句话:后置通知执行了
  53. * 分析:
  54. * 切入点:要对谁增强,Service的所有方法
  55. * 通知:要额外增加的功能,输出“后置通知执行了”
  56. * 通知类型:要什么时候进行增强,在目标方法正常执行完成之后
  57. */
  58. @AfterReturning("execution(public * com.itheima.service.*.*(..))")
  59. public void afterReturning(){
  60. System.out.println("后置通知执行了");
  61. }
  62. /**
  63. * 需求:要在Service每个方法执行之后,必须执行,输出一句话:最终通知执行了
  64. * 分析:
  65. * 切入点:要对谁增强,Service的所有方法
  66. * 通知:要额外增加的功能,输出“最终通知执行了”
  67. * 通知类型:要什么时候进行增强,在目标方法执行之后,必须执行
  68. */
  69. @After("execution(public * com.itheima.service.*.*(..))")
  70. public void after(){
  71. System.out.println("最终通知执行了");
  72. }
  73. }

2 通知方法里获取目标方法信息(备用)

不同通知方法里,获取被调用的目标方法:

  • 可以直接给通知方法,直接加形参 JoinPoint

  • 如果是环绕通知方法,则要加形参 ProceedingJoinPoint,继承了JoinPoint

JoinPoint常用方法:

  • getArgs():获取调用方法时的实参值

  • getTarget():获取被调用的目标对象(原始目标对象)

  • getThis():获取当前代理对象

  • getSignature():获取被调用的方法信息。Signature对象的方法:

    • getName():获取被调用的方法名。比如:queryAllDepts

    • getDeclaringType():获取被调用方法所属的类Class

    • getDeclaringTypeName():获取被调用方法所属的类的全限定类名

    • toLongString():获取方法的完整名称。

      比如:public java.util.List com.itheima.service.impl.DeptServiceImpl.queryAllDepts()

    • toShortString:获取方法的简短名称。

      比如:DeptServiceImpl.queryAllDepts()

    • toString:获取方法信息。

      比如:List com.itheima.service.impl.DeptServiceImpl.queryAllDepts()

  1. package com.itheima.aop;
  2. import org.aspectj.lang.JoinPoint;
  3. import org.aspectj.lang.ProceedingJoinPoint;
  4. import org.aspectj.lang.Signature;
  5. import org.aspectj.lang.annotation.*;
  6. import org.springframework.stereotype.Component;
  7. import java.util.Arrays;
  8. /**
  9. * 当前类是一个切面配置类:
  10. * 类上加@Component:当前类对象必须交给Spring进行管理。不给Spring管理,Spring就不能增强
  11. * 类上加@Aspect:告诉Spring,这个类是切面配置类
  12. * 需求:
  13. * 对Service层的每个方法统计执行时间
  14. * @author liuyp
  15. * @since 2023/08/25
  16. */
  17. @Aspect
  18. @Component
  19. public class Demo01Aspect {
  20. /**
  21. * 方法上加的注解:@Around("切入点表达式"),用于选择对哪些方法进行增强
  22. * @param pjp 目标方法的信息,被增强的那个方法
  23. * @return
  24. */
  25. @Around("execution(public * com.itheima.service.*.*(..))")
  26. public Object executeTime(ProceedingJoinPoint pjp) throws Throwable {
  27. long start = System.currentTimeMillis();
  28. //调用目标方法,得到返回值
  29. Object res = pjp.proceed();
  30. long end = System.currentTimeMillis();
  31. System.out.println("目标方法执行耗时:" + (end - start) + "毫秒");
  32. return res;
  33. }
  34. /**
  35. * 需求:要在Service的每个方法执行之前,先输出一句话:前置通知执行了
  36. * 分析:
  37. * 切入点:要对谁增强,Service的所有方法
  38. * 通知:要额外增加的功能,输出“前置通知执行了”
  39. * 通知类型:要什么时候进行增强,在目标方法执行之前
  40. */
  41. @Before("execution(public * com.itheima.service.*.*(..))")
  42. public void before(JoinPoint joinPoint){
  43. //调用目标方法时的实参值
  44. Object[] args = joinPoint.getArgs();
  45. //调用的目标类对象
  46. Object target = joinPoint.getTarget();
  47. //当前代理类对象
  48. Object aThis = joinPoint.getThis();
  49. //调用的目标方法
  50. Signature signature = joinPoint.getSignature();
  51. System.out.println("前置通知执行了, 目标类是:" + target.getClass().getName() + ", 目标方法:" + signature + ", 方法实参是:" + Arrays.toString(args));
  52. }
  53. /**
  54. * 需求:要在Service的每个方法执行抛出异常时,输出一句话:异常通知执行了
  55. * 分析:
  56. * 切入点:要对谁增强,Service的所有方法
  57. * 通知:要额外增加的功能,输出“异常通知执行了”
  58. * 通知类型:要什么时候进行增强,在目标方法执行抛出异常之后
  59. */
  60. @AfterThrowing("execution(public * com.itheima.service.*.*(..))")
  61. public void afterThrowing(JoinPoint joinPoint){
  62. System.out.println("异常通知执行了, joinPoint = " + joinPoint);
  63. }
  64. /**
  65. * 需求:要在Service的每个方法正常执行完成之后,输出一句话:后置通知执行了
  66. * 分析:
  67. * 切入点:要对谁增强,Service的所有方法
  68. * 通知:要额外增加的功能,输出“后置通知执行了”
  69. * 通知类型:要什么时候进行增强,在目标方法正常执行完成之后
  70. */
  71. @AfterReturning("execution(public * com.itheima.service.*.*(..))")
  72. public void afterReturning(JoinPoint joinPoint){
  73. System.out.println("后置通知执行了, joinPoint = " + joinPoint);
  74. }
  75. /**
  76. * 需求:要在Service每个方法执行之后,必须执行,输出一句话:最终通知执行了
  77. * 分析:
  78. * 切入点:要对谁增强,Service的所有方法
  79. * 通知:要额外增加的功能,输出“最终通知执行了”
  80. * 通知类型:要什么时候进行增强,在目标方法执行之后,必须执行
  81. */
  82. @After("execution(public * com.itheima.service.*.*(..))")
  83. public void after(JoinPoint joinPoint){
  84. System.out.println("最终通知执行了, joinPoint = " + joinPoint);
  85. }
  86. }

3 小结

通知类型:

  • @Around:环绕通知。最灵活的通知方式,必须掌握的方式

  • @Before:前置通知。通知方法在 目标方法执行之前 先执行

  • @AfterReturning:返回通知。通知方法在 目标方法正常执行之后 再执行

  • @AfterThrowing:异常通知。通知方法在 目标方法抛出异常之后 再执行

  • @After:最终通知/后置通知。通知方法在 目标方法执行之后 一定会执行,无论是否有异常

4. AOP详解-切入点表达式

1 execution

用于根据方法的名称进行模糊匹配的

语法:execution(权限修饰符 返回值类型 全限定类名.方法名(形参列表))

  • *:可使用通配符来表示模糊匹配

  • ..:用于形参列表里,表示任意个任意形参; 用于其它地方,表示任意层级的package包

  • 权限修饰符写public,通常省略不写

示例:

  • public void com.itheima.service.XxService.delete(Integer)

  • void com.itheima.service.XxService.delete(Integer)

  • * com.itheima.service.XxService.delete(Integer)

  • * com.itheima.service.*.delete(Integer)

  • * com.itheima..*.delete(Integer)

  • * com.itheima..*.*(Integer)

  • * com.itheima..*.*(Integer, String)

  • * com.itheima..*.*(Integer, *)

  • * com.itheima..*.*(..)

  1. package com.itheima.aop;
  2. import org.aspectj.lang.annotation.After;
  3. import org.aspectj.lang.annotation.Aspect;
  4. import org.aspectj.lang.annotation.Before;
  5. import org.springframework.stereotype.Component;
  6. /**
  7. * 切入点表达式:
  8. * 语法:`execution(权限修饰符 返回值类型 全限定类名.方法名(形参列表))`
  9. * 详解:
  10. * 权限修饰符:通常是`public`,可省略不写
  11. * 返回值类型:可以精确写,也可以用通配符*
  12. * execution(String com.itheima.service.*.*(..))
  13. 表示要选中com.itheima.service下任意类的、返回值是String类型的方法
  14. * execution(void com.itheima.service.*.*(..))
  15. 表示要选中com.itheima.service下任意类的、返回值是void类型的方法
  16. * execution(* com.itheima.service.*.*(..)),
  17. 表示要选中com.itheima.service下任意类的、返回值是任意类型的方法
  18. * 全限定类名:
  19. * 可以精确写,execution(* com.itheima.service.DeptService.queryAllDepts(..))
  20. * 表示选中com.itheima.service.DeptService类下名称为queryAllDepts方法
  21. * 可以用通配符,execution(* com.itheima.service.*.queryAllDepts(..))
  22. * 表示选中com.itheima.service.包下任意类下名称为queryAllDepts方法
  23. * 可以使用..表示后代,execution(* com.itheima..*.*(..))
  24. * 表示选中com.itheima包下所有的类(包括这个包里的类,以下所有下级包里的类)的所有方法
  25. * 方法名:可以精确写,也可以用通配符*
  26. * 如果写:execution(* com.itheima..*.queryAllDepts(..))
  27. * 表示选中com.itheima包下所有类里queryAllDepts方法
  28. * 如果写:execution(* com.itheima..*.*(..))
  29. * 表示选中com.itheima包下所有类里任意方法
  30. * 形参列表:
  31. * 可以精确写,
  32. * execution(* com.itheima..*.*(String))
  33. 表示选中com.itheima包下所有类的任意方法,但是要求方法有1个形参必须是String
  34. * execution(* com.itheima..*.*(String, Integer))
  35. 表示选中com.itheima包下所有类的任意方法,但是要求方法有2个形参按顺序必须是String、Integer
  36. * 也可以用通配符*
  37. * execution(* com.itheima..*.*(String, *))
  38. 表示选中com.itheima包下所有类的任意方法,但是要求方法有2个形参按顺序必须是String、任意类型
  39. * 任意个任意类型:..
  40. * execution(* com.itheima..*.*(..))
  41. 表示选中com.itheima包下任意类里任意方法,方法的形参个数和类型都不限制
  42. * 示例:execution(* *..*.*(..)) 表示选择任意包下、任意类的任意方法,形参不限,返回值不限。不要用
  43. * @author liuyp
  44. * @since 2023/08/25
  45. */
  46. @Aspect
  47. @Component
  48. public class Demo02Aspect {
  49. @Before("execution(* com.itheima.service.*.*(..))")
  50. public void before(){
  51. System.out.println("=====Demo02Aspect.before执行了======");
  52. }
  53. @After("execution(* com.itheima.service.*.*(..))")
  54. public void after(){
  55. System.out.println("=====Demo02Aspect.after执行了======");
  56. }
  57. }

2 @annotation

根据注解选择要增强的方法

语法:@annotation(注解的全限定类名),会选择所有加了指定注解的方法,进行增强

示例:

  1. 自定义注解

  1. import java.lang.annotation.ElementType;
  2. import java.lang.annotation.Retention;
  3. import java.lang.annotation.RetentionPolicy;
  4. import java.lang.annotation.Target;
  5. @Target(ElementType.METHOD)
  6. @Retention(RetentionPolicy.RUNTIME)
  7. public @interface MyLog {
  8. }

2.创建切面配置类

  1. package com.itheima.aop;
  2. import org.aspectj.lang.annotation.Aspect;
  3. import org.aspectj.lang.annotation.Before;
  4. import org.springframework.stereotype.Component;
  5. @Aspect
  6. @Component
  7. public class Demo03Aspect {
  8. @Before("@annotation(com.itheima.aop.MyLog)")
  9. public void saveLogs(){
  10. System.out.println("========保存日志信息======");
  11. }
  12. }

3.给DeptServiceImpl的queryAllDepts方法上加注解@MyLog

3 抽取公用切入点表达式

语法:

  • 定义公用的切入点表达式:在切面类里创建一个方法,方法上加注解@Pointcut("公用的切入点表达式")

  • 引用公用的切入点表达式:

    • 完整用法:Before("com.itheima.aop.Demo02Aspect.pc()")

    • 简写形式:Before("pc()"),仅适合于 切入点方法 和 通知方法在同一个类里

  1. package com.itheima.aop;
  2. import org.aspectj.lang.annotation.After;
  3. import org.aspectj.lang.annotation.Aspect;
  4. import org.aspectj.lang.annotation.Before;
  5. import org.aspectj.lang.annotation.Pointcut;
  6. import org.springframework.stereotype.Component;
  7. /**
  8. * 如果要抽取公用的切入点表达式:
  9. * 使用注解@Pointcut("公用的切入点表达式")
  10. * 把注解加在方法上
  11. * 当需要使用切入点表达式时:
  12. * 完整的用法:@Before("com.itheima.aop.Demo02Aspect.pc()")
  13. * 如果调用的同一个类里的切入点表达式方法,可以简写@Before("方法名()")。
  14. * @author liuyp
  15. * @since 2023/08/25
  16. */
  17. @Aspect
  18. @Component
  19. public class Demo02Aspect {
  20. /**这个方法仅仅作为切入点表达式的载体*/
  21. @Pointcut("execution(* com.itheima.service.*.*(..))")
  22. public void pc(){}
  23. // @Before("execution(* com.itheima.service.*.*(..))")
  24. // @Before("com.itheima.aop.Demo02Aspect.pc()")
  25. @Before("pc()")
  26. public void before(){
  27. System.out.println("=====Demo02Aspect.before执行了======");
  28. }
  29. // @After("execution(* com.itheima.service.*.*(..))")
  30. @After("pc()")
  31. public void after(){
  32. System.out.println("=====Demo02Aspect.after执行了======");
  33. }
  34. }

4 小结

切入点表达式:用于 选中要增强的方法

语法:

  • 根据方法名选择:execution(权限修饰符 返回值类型 全限定类名.方法名(形参列表))

  • 根据注解选择:@annotation(注解的全限定类名)

如何抽取公用切入点表达式

  • 在切面类里定义一个方法,方法上加@Pointcut("切入点表达式")

  • 需要使用切入点表达式时

    • 简写:这个方法和当前通知方法在 同一类里,可以简写 @Before("方法名()")

    • 完整:这个方法和当前通知方法不在同一类,完整写@Before("com.itheima.aspect.Demo01Aspect.pc()")

5. AOP详解-通知执行顺序

  1. package com.itheima.aop;
  2. import org.aspectj.lang.JoinPoint;
  3. import org.aspectj.lang.ProceedingJoinPoint;
  4. import org.aspectj.lang.annotation.*;
  5. import org.springframework.core.annotation.Order;
  6. import org.springframework.stereotype.Component;
  7. @Aspect
  8. //@Order(150)
  9. @Component
  10. public class Demo04Aspect {
  11. @Pointcut("execution(* com.itheima.service.*.*(..))")
  12. public void pc(){}
  13. @Before("pc()")
  14. public void before(){
  15. System.out.println("===Demo04Aspect.before===");
  16. }
  17. @AfterReturning("pc()")
  18. public void afterReturning(){
  19. System.out.println("===Demo04Aspect.afterReturning===");
  20. }
  21. @AfterThrowing("pc()")
  22. public void afterThrowing(){
  23. System.out.println("===Demo04Aspect.afterThrowing===");
  24. }
  25. @After("pc()")
  26. public void after(){
  27. System.out.println("===Demo04Aspect.after===");
  28. }
  29. @Around("pc()")
  30. public Object around(ProceedingJoinPoint pjp) throws Throwable {
  31. System.out.println("===Demo04Aspect.around前===");
  32. //调用目标方法
  33. Object res = pjp.proceed();
  34. System.out.println("===Demo04Aspect.around后===");
  35. return res;
  36. }
  37. }
  1. package com.itheima.aop;
  2. import org.aspectj.lang.ProceedingJoinPoint;
  3. import org.aspectj.lang.annotation.*;
  4. import org.springframework.core.annotation.Order;
  5. import org.springframework.stereotype.Component;
  6. @Aspect
  7. //@Order(100)
  8. @Component
  9. public class Demo05Aspect {
  10. @Pointcut("execution(* com.itheima.service.*.*(..))")
  11. public void pc(){}
  12. @Before("pc()")
  13. public void before(){
  14. System.out.println("===Demo05Aspect.before===");
  15. }
  16. @AfterReturning("pc()")
  17. public void afterReturning(){
  18. System.out.println("===Demo05Aspect.afterReturning===");
  19. }
  20. @AfterThrowing("pc()")
  21. public void afterThrowing(){
  22. System.out.println("===Demo05Aspect.afterThrowing===");
  23. }
  24. @After("pc()")
  25. public void after(){
  26. System.out.println("===Demo05Aspect.after===");
  27. }
  28. @Around("pc()")
  29. public Object around(ProceedingJoinPoint pjp) throws Throwable {
  30. System.out.println("===Demo05Aspect.around前===");
  31. //调用目标方法
  32. Object res = pjp.proceed();
  33. System.out.println("===Demo05Aspect.around后===");
  34. return res;
  35. }
  36. }

6. AOP练习

需求

将tlias案例中增、删、改相关接口的操作日志记录到数据库表中。

  • 就是当访问部门管理和员工管理当中的增、删、改相关功能接口时,需要详细的操作日志,并保存在数据表中,便于后期数据追踪。

操作日志信息包含:操作人、操作时间、执行方法的全类名、执行方法名、方法运行时参数、返回值、方法执行时长

准备

把《资料\AOP-日志案例\tlias-web-management2》拷贝到一个不含中文、空格、特殊字符的目录里,使用idea打开项目,启动引导类

再启动tlias的nginx

打开浏览器访问 http://localhost:90

SQL脚本

  1. use tlias;
  2. -- 操作日志表
  3. create table operate_log(
  4. id int unsigned primary key auto_increment comment 'ID',
  5. operate_user int unsigned comment '操作人ID',
  6. operate_time datetime comment '操作时间',
  7. class_name varchar(100) comment '操作的类名',
  8. method_name varchar(100) comment '操作的方法名',
  9. method_params varchar(1000) comment '方法参数',
  10. return_value varchar(2000) comment '返回值',
  11. cost_time bigint comment '方法执行耗时, 单位:ms'
  12. ) comment '操作日志表';

实体类

  1. package com.itheima.pojo;
  2. import lombok.AllArgsConstructor;
  3. import lombok.Data;
  4. import lombok.NoArgsConstructor;
  5. import java.time.LocalDateTime;
  6. @Data
  7. @NoArgsConstructor
  8. @AllArgsConstructor
  9. public class OperateLog {
  10. private Integer id; //ID
  11. private Integer operateUser; //操作人ID
  12. private LocalDateTime operateTime; //操作时间
  13. private String className; //操作类名
  14. private String methodName; //操作方法名
  15. private String methodParams; //操作方法参数
  16. private String returnValue; //操作方法返回值
  17. private Long costTime; //操作耗时
  18. }

Mapper接口

  1. package com.itheima.mapper;
  2. import com.itheima.pojo.OperateLog;
  3. import org.apache.ibatis.annotations.Insert;
  4. import org.apache.ibatis.annotations.Mapper;
  5. @Mapper
  6. public interface OperateLogMapper {
  7. //插入日志数据
  8. @Insert("insert into operate_log (operate_user, operate_time, class_name, method_name, method_params, return_value, cost_time) " +
  9. "values (#{operateUser}, #{operateTime}, #{className}, #{methodName}, #{methodParams}, #{returnValue}, #{costTime});")
  10. void insert(OperateLog log);
  11. }

分析:

选择AOP技术实现:

  • 如果不使用AOP,就需要修改源码,给大量的方法增加保存日志的代码。代码重复,日志和业务功能耦合到了一起

  • 希望:不修改源码的情况下,给Service层的方法进行增强,就使用AOP

要使用AOP技术:

  • 切入点:对哪些方法增强

    哪个方法需要保存日志,就在哪个方法上加一个自定义注解

    使用注解切入点表达式@annotation(自定义注解)

  • 通知:

    通知类型:使用@Around环绕通知

    通知方法:获取当前用户、当前时间、当前方法的类名和方法名、方法的实参、返回值,运行耗时,把这些信息保存到日志表

  1. package com.itheima.aspect;
  2. import com.itheima.mapper.OperateLogMapper;
  3. import com.itheima.pojo.OperateLog;
  4. import com.itheima.util.JwtUtils;
  5. import io.jsonwebtoken.Claims;
  6. import org.aspectj.lang.ProceedingJoinPoint;
  7. import org.aspectj.lang.Signature;
  8. import org.aspectj.lang.annotation.Around;
  9. import org.aspectj.lang.annotation.Aspect;
  10. import org.springframework.beans.factory.annotation.Autowired;
  11. import org.springframework.stereotype.Component;
  12. import javax.servlet.http.HttpServletRequest;
  13. import java.time.LocalDateTime;
  14. import java.util.Arrays;
  15. @Aspect
  16. @Component
  17. public class OperateLogAspect {
  18. @Autowired
  19. private OperateLogMapper logMapper;
  20. @Autowired
  21. private HttpServletRequest request;
  22. @Around("execution(* com.itheima.service.*.*(..))")
  23. public Object logSave(ProceedingJoinPoint pjp) throws Throwable {
  24. long start = System.currentTimeMillis();
  25. //调用目标方法,得到返回值
  26. Object res = pjp.proceed();
  27. long end = System.currentTimeMillis();
  28. //保存日志信息
  29. OperateLog ol = new OperateLog();
  30. //填充日志数据-操作人id,当前登录的用户。客户端每次请求都会携带token到服务端,只要从请求里获取token就能得到当前用户
  31. String token = request.getHeader("token");
  32. if (token != null && !"".equals(token)) {
  33. Claims claims = JwtUtils.parseJWT(token);
  34. Integer userId = claims.get("id", Integer.class);
  35. ol.setOperateUser(userId);
  36. }
  37. //填充日志数据-操作时间
  38. ol.setOperateTime(LocalDateTime.now());
  39. //填充日志数据-目标类名
  40. Signature signature = pjp.getSignature();
  41. String className = signature.getDeclaringTypeName();
  42. ol.setClassName(className);
  43. //填充日志数据-目标方法名
  44. ol.setMethodName(signature.getName());
  45. //填充日志数据-方法的实参
  46. Object[] args = pjp.getArgs();
  47. ol.setMethodParams(Arrays.toString(args));
  48. //填充日志数据-方法的返回值
  49. ol.setReturnValue(res.toString());
  50. //填充日志数据-操作耗时
  51. ol.setCostTime(end-start);
  52. //保存到数据库里
  53. logMapper.insert(ol);
  54. String remoteAddr = request.getRemoteAddr();
  55. System.out.println("客户端ip:" + remoteAddr);
  56. return res;
  57. }
  58. }

7. 小结

AOP是什么:面向切面编程,底层是动态代理

AOP的作用:用于在不修改目标对象源码的情况下,进行功能增强

AOP的底层:

  • JDK的动态代理:如果有接口,就使用JDK的

  • cglib动态代理:如果没有接口,就使用cglib

AOP的几个概念:

  • 切入点PointCut:要增强的方法

  • 通知Advice:要如何增强

  • 切面Aspect:切入点 + 通知。表示 要对哪些方法 做什么样的增强

AOP的使用:

  1. 添加依赖坐标 spring-boot-starter-aop

  2. 创建切面类:类上加@Component @Aspect;类里写通知方法,通知方法加注解配置切入点表达式

@Aspect
@Order(整数) //整数是排序号,值越小,执行的越早
@Component
public class DemoAspect{
    
    @PointCut("切入点表达式")
    public void pc(){}
    
    //环绕通知方法:固定写法
    @Around("pc()")
    public Object method(ProceedingJoinPoint pjp){
        //前边写的前置增强
        
        //调用目标方法
        Object res = pjp.proceed();
        
        //后边写的后置增强
        
        return res;
    }
    
    //其它通知方法:返回值void,可以无参,方法名随便。 如果需要用到目标方法,就加形参JoinPoint
    @Before("切入点表达式")
    public void before(){
    }
    @AfterThrowing("切入点表达式")
    public void before(){
    }
    @AfterReturning("切入点表达式")
    public void before(){
    }
    @After("切入点表达式")
    public void before(){
    }
}

通知类型:

  • @Before:通知方法在 目标方法执行之前 先执行

  • @AfterReturning:通知方法在 目标方法正常执行之后 再执行

  • @AfterThrowing:通知方法在 目标方法抛出异常之后 再执行

  • @After:通知方法在 目标方法执行之后,必定会执行,无论有没有异常

切入点表达式:这种表达式是用于选择 要增强的方法

  • 根据方法名选择:execution(权限修饰符 返回值类型 全限定类名.方法名(形参类型列表))

  • 根据注解选择:@annotation(注解的全限定类名)

多个切面的执行顺序:

  • 默认按 切面类的全限定类名 顺序执行

  • 如果要设置执行顺序,就在切面类上加 @Order(整数),整数越小,执行的越早

声明:本文内容由网友自发贡献,转载请注明出处:【wpsshop】
推荐阅读
相关标签
  

闽ICP备14008679号