在 Maven 项目中使用 AspectJ:编织不起作用
Using AspectJ in maven project: weaving is not working
我正在尝试用那里给出的答案重现 中的示例。特别是,现在我正在使用 Eclipse Photon,JDK 1.8 但没有成功。
我的最终 POM.XML 是:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>aspect-tutorial</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.11</version>
<configuration>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
</configuration>
<executions>
<execution>
<!-- IMPORTANT -->
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<!-- IMPORTANT -->
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<mainClass>com.pkg.MainApp</mainClass>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build></project>
我已经尝试 运行 Eclipse (MainApp --> 运行 as...) 和 Maven (pom.xml -->运行 as --> Maven Build),但是没有编织发生。有什么想法吗?
非常感谢!贝亚
我 forked your repo 并修复了您的 Maven POM。您实际上犯了一个 Maven 初学者的错误,即在 <pluginManagement>
部分预配置插件,但从未在 <plugins>
部分实际声明使用预配置插件。在那种情况下,Maven 当然不使用 AspectJ Maven 插件,因此也不编织任何方面。
我给你发了一个 pull request 你可以接受它来完成这项工作。您的 Maven 设置中还有其他一些可以改进的地方,例如
如果您真的想使用 AspectJ 1.9.5 而不是 AspectJ Maven 中使用的预配置的 1.8.13,有一种方法可以实现,但不是您使用的方法。如果这是一个问题,请随时询问更多详细信息。
如果您想使用 JDK 比 8 更新的版本以便 运行 您的 Maven 构建。在这种情况下,您需要切换到 AspectJ Maven 的一个分支,因为 1.11 版不适用于 JDK 9+。如有必要,我还可以在那里为您提供更多详细信息。但是 JDK 8 你应该没问题。
我正在尝试用那里给出的答案重现
我的最终 POM.XML 是:
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com</groupId>
<artifactId>aspect-tutorial</artifactId>
<version>0.0.1-SNAPSHOT</version>
<properties>
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version>
</properties>
<dependencies>
<dependency>
<groupId>org.aspectj</groupId>
<artifactId>aspectjrt</artifactId>
<version>1.9.5</version>
</dependency>
</dependencies>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>aspectj-maven-plugin</artifactId>
<version>1.11</version>
<configuration>
<complianceLevel>1.8</complianceLevel>
<source>1.8</source>
<target>1.8</target>
</configuration>
<executions>
<execution>
<!-- IMPORTANT -->
<phase>process-sources</phase>
<goals>
<goal>compile</goal>
<goal>test-compile</goal>
</goals>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven.compiler.plugin.version}</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
<!-- IMPORTANT -->
<useIncrementalCompilation>false</useIncrementalCompilation>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</version>
<configuration>
<mainClass>com.pkg.MainApp</mainClass>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build></project>
我已经尝试 运行 Eclipse (MainApp --> 运行 as...) 和 Maven (pom.xml -->运行 as --> Maven Build),但是没有编织发生。有什么想法吗?
非常感谢!贝亚
我 forked your repo 并修复了您的 Maven POM。您实际上犯了一个 Maven 初学者的错误,即在 <pluginManagement>
部分预配置插件,但从未在 <plugins>
部分实际声明使用预配置插件。在那种情况下,Maven 当然不使用 AspectJ Maven 插件,因此也不编织任何方面。
我给你发了一个 pull request 你可以接受它来完成这项工作。您的 Maven 设置中还有其他一些可以改进的地方,例如
如果您真的想使用 AspectJ 1.9.5 而不是 AspectJ Maven 中使用的预配置的 1.8.13,有一种方法可以实现,但不是您使用的方法。如果这是一个问题,请随时询问更多详细信息。
如果您想使用 JDK 比 8 更新的版本以便 运行 您的 Maven 构建。在这种情况下,您需要切换到 AspectJ Maven 的一个分支,因为 1.11 版不适用于 JDK 9+。如有必要,我还可以在那里为您提供更多详细信息。但是 JDK 8 你应该没问题。