服务器之家:专注于服务器技术及软件下载分享
分类导航

PHP教程|ASP.NET教程|Java教程|ASP教程|编程技术|正则表达式|C/C++|IOS|C#|Swift|Android|VB|R语言|JavaScript|易语言|vb.net|

服务器之家 - 编程语言 - Java教程 - spring项目中切面及AOP的使用方法

spring项目中切面及AOP的使用方法

2021-09-16 11:04努力''搬砖''学习的严惜 Java教程

我们知道,spring两大核心,IOC(控制反转)和AOP(切面),那为什么要使用AOP,AOP是什么呢?带着这些问题通过本文学习下吧

使用AOP的原因(AOP简介)

我们知道,spring两大核心,IOC(控制反转)和AOP(切面),那为什么要使用AOP,AOP是什么呢,严格来说,AOP是一种编程规范,是一种编程思想,并非spring创造,AOP可以帮助我们在一定程度上从冗余的通用的业务逻辑中解脱出来,最明显的,比如每个接口的请求,都要记录日志,那这个操作如果每个地方都写,就会很繁琐,当然,记录日志并不是唯一的用法

spring的AOP只能基于IOC来管理,它只能作用于spring容器的bean

并且,spring的AOP为的是解决企业开发中出现最普遍的方法织入,并不是为了像AspectJ那样,成为一个完全的AOP使用解决方案

AOP的使用

开启AOP支持

要使用AOP,首先要开启AOP的支持

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

启动类添加 @EnableAspectJAutoProxy 注解

编写切面类与测试方法

  1. @Aspect
  2. @Component
  3. public class MyAop {
  4.  
  5. }
  1. @RestController
  2. public class OneController {
  3.  
  4. @GetMapping("/doCheck")
  5. public String doCheck (int age) {
  6. System.out.println("doCheck");
  7. if (age > 1) {
  8. throw new MyException(ExceptionEnu.SUCCESS);
  9. } else {
  10. throw new MyException(ExceptionEnu.FAILD);
  11. }
  12. }
  13.  
  14. }

记得切面类交给spring管理哦~ @Component

编写切面方法

@Before

这个注解的用法呢,就是说,在执行你要执行的东西之前,执行加了这个注解的方法

比如

  1. @Before(value = "execution (* own.study.web.OneController.*(..))")
  2. public void doAop( ) {
  3. System.out.println("before aop");
  4. }

也就是说,如果我要调用 OneController 的方法,在调用到之前,会执行这个 doAop 方法

让我们来测试一下

spring项目中切面及AOP的使用方法

@After

这个注解的用法,就是说,当你执行完你的方法之后,真的返回给调用方之前,执行加了这个注解的方法

比如

  1. @After(value = "execution (* own.study.web.OneController.*(..))")
  2. public void doAfter() {
  3. System.out.println("after aop");
  4. }

让我们来测试一下

spring项目中切面及AOP的使用方法

@AfterThrowing

见名知意,在发生异常后,执行加了此注解的方法

注意我上面写的测试方法了吗?我抛出了自定义的异常

让我们测试一下

spring项目中切面及AOP的使用方法

@AfterReturning

这个注解的用法也是看名字就能猜到,执行完后,执行此方法

但是!这个执行完,指的是正常执行完,不抛出异常的那种,不信?我们来试试

spring项目中切面及AOP的使用方法

@Around

这个是最为强大的一个注解,环绕通知,方法执行前和执行后都会执行加了这个注解的方法

  1. @Around(value = "execution (* own.study.web.OneController.*(..))")
  2. public Object doAround (ProceedingJoinPoint point) throws Throwable {
  3. Gson gson = new Gson();
  4. System.out.println("进入AOP --->" + System.currentTimeMillis());
  5. System.out.println("方法名 = " + point.getSignature().toShortString());
  6.  
  7. Object result = point.proceed();
  8.  
  9. System.out.println("响应参数为 = " + gson.toJson(result));
  10. System.out.println("AOP完事了 --->" + System.currentTimeMillis());
  11. return result;
  12. }
  1. @RestController
  2. public class OneController {
  3.  
  4. @GetMapping("/doCheck")
  5. public Object doCheck (int age) throws InterruptedException {
  6. System.out.println("这个是controller的方法 --->" + System.currentTimeMillis());
  7. Thread.sleep(2000l);
  8. System.out.println("doCheck");
  9.  
  10. return new MyRsp("1", "success");
  11. }
  12.  
  13. }

spring项目中切面及AOP的使用方法

但是,注意!这个环绕通知不是万能的,不是一定好,大家按需要使用,比如一个场景,当你的方法抛出了异常,这个环绕通知就不会再继续执行

我们来实验一下

改写controller的方法

  1. @RestController
  2. public class OneController {
  3.  
  4. @GetMapping("/doCheck")
  5. public Object doCheck (int age) throws InterruptedException {
  6. System.out.println("这个是controller的方法 --->" + System.currentTimeMillis());
  7. Thread.sleep(2000l);
  8. System.out.println("doCheck");
  9. throw new MyException("1", "success");
  10.  
  11. // return new MyRsp("1", "success");
  12. }
  13.  
  14. }

spring项目中切面及AOP的使用方法

看,AOP后续的没有被执行

以上就是spring的切面,AOP的使用的详细内容,更多关于spring的切面,AOP的使用的资料请关注服务器之家其它相关文章!

原文链接:https://blog.csdn.net/weixin_46097842/article/details/118092818

延伸 · 阅读

精彩推荐