当前位置:   article > 正文

SSM学习39:AOP通知类型:环绕通知

环绕通知

目录

​编辑

2.1 需求分析

2.2 思路分析

创建一个Maven项目

导入pom.xml

添加BookDao和BookDaoImpl类

创建Spring的配置类

定义通知类和通知MyAdvice  

编写App运行类

运行结果


 

  1. 环绕通知必须依赖形参ProceedingJoinPoint才能实现对原始方法的调用,进而实现原始方法调用前后同时添加通知

  2. 通知中如果未使用ProceedingJoinPoint对原始方法进行调用将跳过原始方法的执行

  3. 对原始方法的调用可以不接收返回值,通知方法设置成void即可,如果接收返回值,最好设定为Object类型

  4. 原始方法的返回值如果是void类型,通知方法的返回值类型可以设置成void,也可以设置成Object

  5. 由于无法预知原始方法运行后是否会抛出异常,因此环绕通知方法必须要处理Throwable异常

介绍完这么多种通知类型,具体该选哪一种呢?

我们可以通过一些案例加深下对通知类型的学习。

 

环绕通知写法

  1. @Around("pt2()")
  2. public Object aroundSelect(ProceedingJoinPoint pjp) throws Throwable {
  3. System.out.println("around before advice ...");
  4. //表示对原始操作的调用
  5. Object ret = pjp.proceed();
  6. System.out.println("around after advice ...");
  7. return ret;
  8. }

2.1 需求分析

案例设定:测算接口执行效率,但是这个案例稍微复杂了点,我们对其进行简化。

简化设定:在方法执行前输出当前系统时间。

对于SpringAOP的开发有两种方式,XML 和 ==注解==,我们使用哪个呢?

因为现在注解使用的比较多,所以本次课程就采用注解完成AOP的开发。

总结需求为:使用SpringAOP的注解方式完成在方法执行的前打印出当前系统时间。

2.2 思路分析

需求明确后,具体该如何实现,都有哪些步骤,我们先来分析下:

1.导入坐标(pom.xml)

2.制作连接点(原始操作,Dao接口与实现类)

3.制作共性功能(通知类与通知)

4.定义切入点

5.绑定切入点与通知关系(切面)

创建一个Maven项目

导入pom.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>org.example</groupId>
  7. <artifactId>SpringAop</artifactId>
  8. <version>1.0-SNAPSHOT</version>
  9. <dependencies>
  10. <dependency>
  11. <groupId>org.springframework</groupId>
  12. <artifactId>spring-context</artifactId>
  13. <version>5.2.10.RELEASE</version>
  14. </dependency>
  15. <dependency>
  16. <groupId>org.aspectj</groupId>
  17. <artifactId>aspectjweaver</artifactId>
  18. <version>1.9.4</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-test</artifactId>
  23. <version>5.2.10.RELEASE</version>
  24. </dependency>
  25. </dependencies>
  26. <properties>
  27. <maven.compiler.source>8</maven.compiler.source>
  28. <maven.compiler.target>8</maven.compiler.target>
  29. </properties>
  30. </project>

添加BookDao和BookDaoImpl类

  1. package com.itheima.dao;
  2. public interface book {
  3. public void save();
  4. public void update();
  5. }
  6. package com.itheima.dao.impl;
  7. import com.itheima.dao.book;
  8. import org.springframework.stereotype.Repository;
  9. @Repository
  10. public class bookimpl implements book {
  11. @Override
  12. public void save() {
  13. System.out.println("方法1");
  14. }
  15. @Override
  16. public void update() {
  17. System.out.println("方法2");
  18. }
  19. @Override
  20. public int select() {
  21. System.out.println("save()方法执行成功!");
  22. return 100;
  23. }
  24. }

创建Spring的配置类

  1. package com.itheima.SpringConfig;
  2. import org.springframework.context.annotation.ComponentScan;
  3. import org.springframework.context.annotation.EnableAspectJAutoProxy;
  4. import org.springframework.stereotype.Component;
  5. @Component
  6. @ComponentScan("com.itheima")
  7. @EnableAspectJAutoProxy
  8. public class SpringConfig {
  9. }

定义通知类和通知MyAdvice  

 

  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.aspectj.lang.annotation.Before;
  6. import org.aspectj.lang.annotation.Pointcut;
  7. import org.springframework.stereotype.Component;
  8. @Component
  9. @Aspect
  10. public class bookaop {
  11. //绑定连接点
  12. @Pointcut("execution(int *com.itheima.*.*book.select(..))")
  13. private void aa(){};
  14. @Pointcut("execution(void *com.itheima.*.*book.update(..))")
  15. private void bb(){};
  16. //绑定切面
  17. @Before("bb()")
  18. //创建通知
  19. public void kk(){
  20. System.out.println("郭浩康加油");
  21. }
  22. //@Before("aa()")
  23. // public void before() {
  24. // System.out.println("before advice ...");
  25. // }
  26. //@After("aa()")
  27. // public void after() {
  28. // System.out.println("after advice ...");
  29. // }
  30. @Around("aa()")
  31. public Object around(ProceedingJoinPoint pjp) throws Throwable {
  32. System.out.println("around before advice ...");
  33. Object proceed = pjp.proceed();
  34. System.out.println("around after advice ...");
  35. return proceed;
  36. }
  37. public void afterReturning() {
  38. System.out.println("afterReturning advice ...");
  39. }
  40. public void afterThrowing() {
  41. System.out.println("afterThrowing advice ...");
  42. }
  43. }

编写App运行类

  1. package com.itheima;
  2. import com.itheima.SpringConfig.SpringConfig;
  3. import com.itheima.dao.book;
  4. import org.springframework.context.ApplicationContext;
  5. import org.springframework.context.annotation.AnnotationConfigApplicationContext;
  6. public class APP {
  7. public static void main(String[] args) {
  8. ApplicationContext ctx=new AnnotationConfigApplicationContext(SpringConfig.class);
  9. book book = ctx.getBean(book.class);
  10. book.save();
  11. }
  12. }
  1. package com.itheima;
  2. import com.itheima.SpringConfig.SpringConfig;
  3. import com.itheima.dao.book;
  4. import org.junit.Test;
  5. import org.junit.runner.RunWith;
  6. import org.springframework.beans.factory.annotation.Autowired;
  7. import org.springframework.test.context.ContextConfiguration;
  8. import org.springframework.test.context.junit4.SpringJUnit4ClassRunner;
  9. @RunWith(SpringJUnit4ClassRunner.class)
  10. @ContextConfiguration(classes = SpringConfig.class)
  11. public class test {
  12. @Autowired
  13. private book bk;
  14. @Test
  15. public void testsave(){
  16. bk.update();
  17. }
  18. @Test
  19. public void testselect(){
  20. int select = bk.select();
  21. System.out.println(select);
  22. }
  23. }

运行结果

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/黑客灵魂/article/detail/846753
推荐阅读
相关标签
  

闽ICP备14008679号