Enabling @AspectJ Support
要在 Spring 配置中使用 @AspectJ 方面,你需要启用 Spring 对基于 @AspectJ 方面和根据这些方面是否建议自动代理 bean 配置 Spring AOP 的支持。自动代理指的是,如果 Spring 确定某些 bean 受到一个或多个方面建议,它将自动为此 bean 创建一个代理,以拦截方法调用并确保在需要时运行建议。
可以使用编程方式或 XML 配置启用 @AspectJ 支持。无论哪种情况,你还需要确保 AspectJ 的 org.aspectj:aspectjweaver
库位于应用程序的类路径中(版本 1.9 或更高版本)。
-
Java
-
Kotlin
-
Xml
@Configuration
@EnableAspectJAutoProxy
public class ApplicationConfiguration {
}
@Configuration
@EnableAspectJAutoProxy
class ApplicationConfiguration
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:aop="http://www.springframework.org/schema/aop"
xsi:schemaLocation="http://www.springframework.org/schema/beans
https://www.springframework.org/schema/beans/spring-beans.xsd
http://www.springframework.org/schema/aop
https://www.springframework.org/schema/aop/spring-aop.xsd">
<aop:aspectj-autoproxy />
</beans>