AspectJ编译时使用Spring引导和maven编织
我试图在Spring引导中使用AspectJ方面。 但似乎Spring无法看到使用Ajc编译器编译的方面类,并且我得到的错误是没有找到包含我的方面的包。
我正在使用以下aspectj-maven-plugin
配置:
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.10</version>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjtools</artifactId>
<version>1.8.9</version>
</dependency>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.8.9</version>
</dependency>
</dependencies>
<configuration>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
<showWeaveInfo>true</showWeaveInfo>
<verbose>true</verbose>
<Xlint>ignore</Xlint>
<encoding>UTF-8 </encoding>
<weaveDirectories>
<weaveDirectory>${project.build.directory}/classes</weaveDirectory>
</weaveDirectories>
<forceAjcCompile>true</forceAjcCompile>
</configuration>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
还添加了以下依赖项:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-aop</artifactId>
</dependency>
春季配置aop配置:
@Configuration
public class AspectJConfig {
@Bean
public MyAspect myAspect() {
return Aspects.aspectOf(MyAspect.class);
}
}
我无法弄清楚我的Aspect类最终无法找到的原因。 任何帮助表示赞赏。
链接地址: http://www.djcxy.com/p/25415.html上一篇: AspectJ compile time weaving with Spring boot and maven