Spring Boot aop使用指南
Posted go4it
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Spring Boot aop使用指南相关的知识,希望对你有一定的参考价值。
1. 使用示例
1.在pom中添加依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
2.使用aop注解
public class Test{
public static void main(String[] args) {
ApplicationContext ac = (ApplicationContext) new AnnotationConfigApplicationContext(Cfg.class);
Target target = (Target) ac.getBean("target");
target.print();
}
}
@Configuration
@ComponentScan("com.example.springboot")
class Cfg{
}
@Component
class Target{
public void print(){
System.out.println("target print");
}
}
@Aspect
@Component // 必须纳入容器管理
class MyAspect{
@Before("execution(* com.example.springboot.Target.print())")
public void before(){
System.out.println("before print");
}
}
2. 增强类型
@Before
@AfterReturning
@AfterThrowing
@After // 其实是AfterFinally增强
@Around // 环绕增强
以上是关于Spring Boot aop使用指南的主要内容,如果未能解决你的问题,请参考以下文章
spring boot 基础之使用AOP统一处理请求日志使用方法