Aspectj maven插件错误

时间:2013-10-22 13:41:05

标签: java maven aspectj

我收到了这个错误

[ERROR] can't determine superclass of missing type org.springframework.aop.interceptor.AsyncExecutionAspectSupport
when batch building BuildConfig[null] #Files=18 AopXmls=#0
 [Xlint:cantFindType]

这是我使用aspectj插件的POM的一部分 aspectj.version是1.6.11

        <plugin>
            <groupId>org.codehaus.mojo</groupId>
            <artifactId>aspectj-maven-plugin</artifactId>
            <version>1.4</version>

            <configuration>
                <showWeaveInfo>false</showWeaveInfo>
                <verbose>false</verbose>
                <source>1.7</source>
                <target>1.7</target>
                <complianceLevel>1.7</complianceLevel>

                <aspectLibraries>
                    <aspectLibrary>
                        <groupId>ru.sofitlabs</groupId>
                        <artifactId>ngutil</artifactId>
                    </aspectLibrary>

                    <aspectLibrary>
                        <groupId>org.springframework</groupId>
                        <artifactId>spring-aspects</artifactId>
                    </aspectLibrary>
                </aspectLibraries>
            </configuration>

            <executions>
                <execution>
                    <goals>
                        <goal>compile</goal>
                        <goal>test-compile</goal>
                    </goals>
                </execution>
            </executions>

            <dependencies>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjrt</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
                <dependency>
                    <groupId>org.aspectj</groupId>
                    <artifactId>aspectjweaver</artifactId>
                    <version>${aspectj.version}</version>
                </dependency>
            </dependencies>
        </plugin>

我将不胜感激。

2 个答案:

答案 0 :(得分:2)

缺少类型org.springframework.aop.interceptor.AsyncExecutionAspectSupport应该是spring-aop,这取决于spring-aspects。

你确定jar spring-aop在exec时间在你的类路径中吗?

答案 1 :(得分:0)

终于找到了解决方案。我将编译,源和目标级别设置为1.7(不要忘记为服务器VM设置参数“-XX:-UseSplitVerifier”)并排除许多依赖项。例如旧的弹簧,弹簧等。 IDEA有一个很好的工具 - 依赖关系图,在这种情况下非常有用。