当前位置:   article > 正文

springboot实现aop_springboot 实现aop的方式

springboot 实现aop的方式
1.定义动作类
@Component
public class ProductService {
    public void doSomeService(){
        System.out.println("doSomeService");
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
2.定义切面类
@Aspect
@Component
public class LoggerAspect {
	//@Pointcut(value = "execution(* com.example.demo.aop.ProductService.*(..))")
	//public void annotationPointCut(){};
    @Around(value = "execution(* com.example.demo.aop.ProductService.*(..))")
    public Object log(ProceedingJoinPoint joinPoint) throws Throwable {
        System.out.println("start log:" + joinPoint.getSignature().getName());
        Object object = joinPoint.proceed();
        System.out.println("end log:" + joinPoint.getSignature().getName());
        return object;
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13

@Around表明这是一个切面,可以使用@pointCut的方式定义切点,当然也可以直接将切点定义在具体的建言(@Around)——也就是具体的切点执行内容中。
更多的建言还有@Before、@After、@AfterThrowing、@AfterReturning。

3.配置类
@ComponentScan("com.example.demo.aop")
@Configuration
@EnableAspectJAutoProxy
public class AopConfig {
}
  • 1
  • 2
  • 3
  • 4
  • 5

使用@EnableAspectJAutoProxy注解开启Spring对AspectJ的支持,这个是必须的。网络上很多人说并不一定需要这个,springboot默认已经开启,但我多次尝试后,确定没有它切面压根不会执行

4.测试
public class Main {
    public static void main(String[] args) {
        AnnotationConfigApplicationContext context = new AnnotationConfigApplicationContext(DiConfig.class);
        ProductService productService = context.getBean(ProductService.class);
        productService.doSomeService();
        context.close();
    }
}

  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9

完成以上动作后,就可以编码测试了,如图,前后都执行了切点方法。
在这里插入图片描述

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

闽ICP备14008679号