使用Spring AOP的步驟如下:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
@Aspect
注解進行標記,并且包含需要在目標方法執行前、執行后或拋出異常時執行的通知方法。@Aspect
@Component
public class LoggingAspect {
@Before("execution(public * com.example.MyService.*(..))")
public void beforeAdvice(JoinPoint joinPoint) {
System.out.println("Before method: " + joinPoint.getSignature());
}
@After("execution(public * com.example.MyService.*(..))")
public void afterAdvice(JoinPoint joinPoint) {
System.out.println("After method: " + joinPoint.getSignature());
}
@AfterThrowing(pointcut = "execution(public * com.example.MyService.*(..))", throwing = "exception")
public void afterThrowingAdvice(JoinPoint joinPoint, Exception exception) {
System.out.println("Exception thrown by method: " + joinPoint.getSignature());
System.out.println("Exception: " + exception.getMessage());
}
}
上述例子中的切面類包含了三個通知方法:beforeAdvice
、afterAdvice
和afterThrowingAdvice
。@Before
注解用于標記在目標方法執行前執行的通知方法,@After
注解用于標記在目標方法執行后執行的通知方法,@AfterThrowing
注解用于標記在目標方法拋出異常時執行的通知方法。
@EnableAspectJAutoProxy
注解,以啟用AOP代理。@SpringBootApplication
@EnableAspectJAutoProxy
public class Application {
public static void main(String[] args) {
SpringApplication.run(Application.class, args);
}
}
@Service
public class MyService {
public void doSomething() {
System.out.println("Doing something...");
}
public void throwException() throws Exception {
throw new Exception("Something went wrong");
}
}
@RestController
public class MyController {
@Autowired
private MyService myService;
@GetMapping("/test")
public void testAOP() {
myService.doSomething();
try {
myService.throwException();
} catch (Exception e) {
e.printStackTrace();
}
}
}
以上示例中,MyService
類包含了兩個方法:doSomething
和throwException
。在MyController
類中,通過調用MyService
的方法來測試AOP的功能。
當執行/test
接口時,AOP將會在doSomething
方法執行前和執行后打印相應的日志信息,并且在throwException
方法拋出異常時打印異常信息。
注意:為了使AOP生效,需要確保目標類(如MyService
)是由Spring容器管理的(例如通過@Service
注解進行標記)。