使用 AspectJ 编译器而不是 Javac 进行编译时出错

2022-09-03 15:54:41

我有一个多模块项目。该方面目前已添加到“核心”项目中。当在这里做一个它的工作原理。但是,尝试执行父项目时,在编译其他项目之一时,它会失败并出现以下错误:mvn clean installmvn clean install

无法解析 org.hibernate.annotations.CacheConcurrencyStrategy 类型。它从所需的.class文件中间接引用

如果我在该项目中添加Hibernate核心依赖项,它也可以工作,但是将依赖项添加到不应该具有依赖项的项目是没有意义的 - 因此它不是解决方案。编译时,它工作正常。javac

原因何在?我该如何修复它,以便我可以使用AspectJ编译器而不会将依赖项泄漏给不应该具有该依赖项的项目?

我在父POM中有这个配置:

 <build>
    <plugins>
        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.5</version>
            <configuration>
                <source>1.6</source>
                <target>1.6</target>
                <complianceLevel>1.6</complianceLevel>
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

更新

我刚刚发现。每次运行都失败。但是,运行一次失败。然后运行没有工作。我看到目标文件夹中是它工作的原因,并且根据您是否运行干净而失败。所以现在我的问题是:你如何自动生成这个文件?mvn clean installmvn [clean] installmvn installcleanbuilddef.lst

父 POM 文件:

    <?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>
    <groupId>com.mycompany</groupId>
    <artifactId>core-lib</artifactId>
    <name>core-lib</name>
    <packaging>pom</packaging>

    <build>
        <plugins>
            <plugin>
                <groupId>org.codehaus.mojo</groupId>
                <artifactId>aspectj-maven-plugin</artifactId>
                <version>1.5</version>
                <configuration>
                    <source>1.6</source>
                    <target>1.6</target>
                    <complianceLevel>1.6</complianceLevel>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>compile</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>

    <dependencies>
        <dependency>
            <groupId>org.aspectj</groupId>
            <artifactId>aspectjrt</artifactId>
            <version>1.7.4</version>
        </dependency>
    </dependencies>

    <modules>
        <module>core-xyz</module>
        <module>core-xyz2</module>
    </modules>
</project>

答案 1

在 maven 调用上启用调试以更深入地挖掘。您应该观察到,aspectj 编译仅在使用 clean 的第一次 maven 调用期间被调用。由于 builddef.lst 在第一次调用后已经存在,因此在没有 clean 的情况下调用会跳过 aspectj 编译。

这个方面j编译插件行为以前已经观察到,并在这里描述:

http://out-println.blogspot.com/2007/08/compile-time-checks-with-aspectj-part-2.html?m=1

您需要更深入地研究以解决根本问题,但正如一位评论者已经建议的那样,aspectj编译器应该只在需要它的模块中启用。

否则,正如您已经观察到的那样,aspectj 编译需要额外的依赖项。我已经将 aspectj 编译合并到我自己的工作中,将其限制为仅需要它的模块,没有问题。


答案 2

根据AspectJ编译器Maven插件,您可以设置以查找现有的.argumentFileNamebuilddef.lst

因此,您可以生成并将其复制到资源文件夹中,并指示AspectJ Maven插件使用该文件。builddef.lst


推荐