AOP : 面向切面编程
Spring Boot 为面向切面编程(AOP)提供了自动配置。您可以在 Spring 框架参考文档中了解更多关于 AOP 的信息。
默认情况下,Spring Boot 的自动配置会将 Spring AOP 配置为使用 CGLib 代理。如果您想改为使用 JDK 代理,可以将 spring.aop.proxy-target-class 设置为 false 。
如果 AspectJ 在类路径中,Spring Boot 的自动配置会自动启用 AspectJ 自动代理,因此不需要显式添加 @EnableAspectJAutoProxy 注解
