记一次aop配置错误踩的坑(在一个方法中配置了两个切面,其中一个未起作用)

第一次配置的aop类如下

public class AopTest1 {
   private static Logger log = LoggerFactory.getLogger(AopTest1.class);

   public void before(){
      log.info("+++++++++before...........1+++++++++");
   }

   public void after(){
      log.info("+++++++++after...........1+++++++++");
   }

   public void afterReturn(){
      log.info("+++++++++afterReturn..........1+++++++++");
   }

   public void afterThrow(){
      log.info("+++++++++afterThrow...........1+++++++++");
   }

   public void around(){
      log.info("+++++++++around............1+++++++++");
   }
}
public class AopTest {
   private static Logger log = LoggerFactory.getLogger(AopTest1.class);

   public void before(){
      log.info("+++++++++before...........1+++++++++");
   }

   public void after(){
      log.info("+++++++++after...........1+++++++++");
   }

   public void afterReturn(){
      log.info("+++++++++afterReturn..........1+++++++++");
   }

   public void afterThrow(){
      log.info("+++++++++afterThrow...........1+++++++++");
   }

   public void around(){
      log.info("+++++++++around............1+++++++++");
   }

studet类

记一次aop配置错误踩的坑(在一个方法中配置了两个切面,其中一个未起作用)_第1张图片

xml配置


   
      
      
      
      
      
      
   

   
      
      
      
      
      
      
   
测试类 
   public static void main(String[] args){

      ClassPathXmlApplicationContext context =  new ClassPathXmlApplicationContext("applicationContext.xml");
      Student student = (Student) context.getBean("student");
      log.info(student.getName());
      student.setName("test");
   }

测试结果:(注意为打印name)

记一次aop配置错误踩的坑(在一个方法中配置了两个切面,其中一个未起作用)_第2张图片

根据现象是第二个切面没有执行,实际上是在around方法中没有返回值,把around方法中返回数值就一切正常了。

记一次aop配置错误踩的坑(在一个方法中配置了两个切面,其中一个未起作用)_第3张图片

修改之后运行的结果为:

记一次aop配置错误踩的坑(在一个方法中配置了两个切面,其中一个未起作用)_第4张图片

 

你可能感兴趣的:(spring)