2017-02-25 92 views
0

我創建了一個包含兩個模塊test-aop和test-web的apring-boot項目。我已經在github https://github.com/zhxjouc/test上傳了這個項目。在test-aop中,我定義了一些AOP類,並且我希望它削減了測試web模塊。我認爲代碼可能沒問題,但是aspectj-maven-plugin可能不起作用。我試圖修改配置整天,但它仍然無法正常工作。以下是錯誤,而運行mvn clean install使用aspectj-maven-plugin從另一個模塊AOP切割模塊

org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.codehaus.mojo:aspectj-maven-plugin:1.9:compile (default) on project test-web: AJC compiler errors: 
abort ABORT -- (RuntimeException) Problem processing attributes in com/test/aop/TestLogAspect.class 
Problem processing attributes in com/test/aop/TestLogAspect.class 
java.lang.RuntimeException: Problem processing attributes in com/test/aop/TestLogAspect.class 
    at org.aspectj.weaver.bcel.BcelObjectType.ensureAspectJAttributesUnpacked(BcelObjectType.java:387) 
    at org.aspectj.weaver.bcel.BcelObjectType.<init>(BcelObjectType.java:162) 
    at org.aspectj.weaver.bcel.BcelWorld.buildBcelDelegate(BcelWorld.java:410) 
    at org.aspectj.weaver.bcel.BcelWorld.addSourceObjectType(BcelWorld.java:487) 
    at org.aspectj.weaver.bcel.BcelWorld.addSourceObjectType(BcelWorld.java:453) 
    at org.aspectj.weaver.bcel.BcelWeaver.addAspectsFromJarFile(BcelWeaver.java:263) 
    at org.aspectj.weaver.bcel.BcelWeaver.addLibraryJarFile(BcelWeaver.java:236) 
    at org.aspectj.ajdt.internal.core.builder.AjBuildManager.initBcelWorld(AjBuildManager.java:874) 
    at org.aspectj.ajdt.internal.core.builder.AjBuildManager.performBuild(AjBuildManager.java:249) 
    at org.aspectj.ajdt.internal.core.builder.AjBuildManager.batchBuild(AjBuildManager.java:185) 
    at org.aspectj.ajdt.ajc.AjdtCommand.doCommand(AjdtCommand.java:112) 
    at org.aspectj.ajdt.ajc.AjdtCommand.runCommand(AjdtCommand.java:60) 
    at org.aspectj.tools.ajc.Main.run(Main.java:371) 
    at org.aspectj.tools.ajc.Main.runMain(Main.java:248) 
    at org.codehaus.mojo.aspectj.AbstractAjcCompiler.execute(AbstractAjcCompiler.java:537) 
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(DefaultBuildPluginManager.java:134) 
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:207) 
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:153) 
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor.java:145) 
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:116) 
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProject(LifecycleModuleBuilder.java:80) 
    at org.apache.maven.lifecycle.internal.builder.singlethreaded.SingleThreadedBuilder.build(SingleThreadedBuilder.java:51) 
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(LifecycleStarter.java:128) 
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:307) 
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:193) 
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:106) 
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:863) 
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:288) 
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:199) 
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62) 
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) 
    at java.lang.reflect.Method.invoke(Method.java:498) 
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Launcher.java:289) 
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.java:229) 
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(Launcher.java:415) 
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:356) 
Caused by: java.lang.RuntimeException: bad WeaverState.Kind: -115. File was :<Unknown>::0 
    at org.aspectj.weaver.WeaverStateInfo.read(WeaverStateInfo.java:170) 
    at org.aspectj.weaver.AjAttribute.read(AjAttribute.java:105) 
    at org.aspectj.weaver.bcel.Utility.readAjAttributes(Utility.java:101) 
    at org.aspectj.weaver.bcel.BcelObjectType.ensureAspectJAttributesUnpacked(BcelObjectType.java:383) 
    ... 36 more 

這裏是POM的配置,我真的想在那裏是錯誤。請幫幫我。

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/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 

<groupId>com.test</groupId> 
<artifactId>test-group</artifactId> 
<packaging>pom</packaging> 
<version>1.0-SNAPSHOT</version> 
<modules> 
    <module>test-aop</module> 
    <module>test-web</module> 
</modules> 

<parent> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>1.4.1.RELEASE</version> 
</parent> 

<properties> 
    <aspectjweaver.version>1.8.9</aspectjweaver.version> 
    <aspectjrt.version>1.8.9</aspectjrt.version> 
    <compiler.version>1.8</compiler.version> 
    <maven.compiler.version>3.3</maven.compiler.version> 
    <java.version>1.8</java.version> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
</properties> 

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

<dependencyManagement> 
    <dependencies> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-web</artifactId> 
      <version>4.3.3.RELEASE</version> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-aspects</artifactId> 
      <version>4.3.3.RELEASE</version> 
     </dependency> 
    </dependencies> 
</dependencyManagement> 
<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-surefire-plugin</artifactId> 
      <configuration> 
       <skipTests>true</skipTests> 
      </configuration> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-source-plugin</artifactId> 
      <executions> 
       <execution> 
        <id>attach-sources</id> 
        <goals> 
         <goal>jar</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
     <plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>buildnumber-maven-plugin</artifactId> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>${maven.compiler.version}</version> 
      <configuration> 
       <source>${java.version}</source> 
       <target>${java.version}</target> 
       <encoding>${project.build.sourceEncoding}</encoding> 
      </configuration> 
     </plugin> 
    </plugins> 
    <pluginManagement> 
     <plugins> 
      <plugin> 
       <groupId>org.codehaus.mojo</groupId> 
       <artifactId>aspectj-maven-plugin</artifactId> 
       <version>1.9</version> 
       <configuration> 
        <showWeaveInfo>true</showWeaveInfo> 
        <forceAjcCompile>true</forceAjcCompile> 
        <source>${compiler.version}</source> 
        <target>${compiler.version}</target> 
        <Xlint>ignore</Xlint> 
        <complianceLevel>1.8</complianceLevel> 
        <encoding>UTF-8</encoding> 
        <verbose>true</verbose> 
        <weaveDirectories> 
         <weaveDirectory>${project.build.outputDirectory}</weaveDirectory> 
        </weaveDirectories> 
       </configuration> 
       <executions> 
        <execution> 
         <phase>process-classes</phase> 
         <goals> 
          <goal>compile</goal> 
         </goals> 
        </execution> 
       </executions> 
       <dependencies> 
        <dependency> 
         <groupId>org.aspectj</groupId> 
         <artifactId>aspectjrt</artifactId> 
         <version>${aspectjrt.version}</version> 
        </dependency> 
        <dependency> 
         <groupId>org.aspectj</groupId> 
         <artifactId>aspectjtools</artifactId> 
         <version>${aspectjrt.version}</version> 
        </dependency> 
       </dependencies> 
      </plugin> 
     </plugins> 
    </pluginManagement> 
</build> 

POM在測試的AOP

<?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/xsd/maven-4.0.0.xsd"> 
<parent> 
    <artifactId>test-group</artifactId> 
    <groupId>com.test</groupId> 
    <version>1.0-SNAPSHOT</version> 
</parent> 
<modelVersion>4.0.0</modelVersion> 

<artifactId>test-aop</artifactId> 

<dependencies> 
    <dependency> 
     <groupId>org.aspectj</groupId> 
     <artifactId>aspectjweaver</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>org.springframework</groupId> 
     <artifactId>spring-web</artifactId> 
    </dependency> 
    <dependency> 
     <groupId>org.slf4j</groupId> 
     <artifactId>slf4j-api</artifactId> 
    </dependency> 
</dependencies> 

<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-jar-plugin</artifactId> 
     </plugin> 
     <plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>aspectj-maven-plugin</artifactId> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <configuration> 
       <source>1.8</source> 
       <target>1.8</target> 
      </configuration> 
     </plugin> 
    </plugins> 
</build> 

POM在測試的web

<?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/xsd/maven-4.0.0.xsd"> 
<modelVersion>4.0.0</modelVersion> 

<groupId>com.test</groupId> 
<artifactId>test-group</artifactId> 
<packaging>pom</packaging> 
<version>1.0-SNAPSHOT</version> 
<modules> 
    <module>test-aop</module> 
    <module>test-web</module> 
</modules> 

<parent> 
    <groupId>org.springframework.boot</groupId> 
    <artifactId>spring-boot-starter-parent</artifactId> 
    <version>1.4.1.RELEASE</version> 
</parent> 

<properties> 
    <aspectjweaver.version>1.8.9</aspectjweaver.version> 
    <aspectjrt.version>1.8.9</aspectjrt.version> 
    <compiler.version>1.8</compiler.version> 
    <maven.compiler.version>3.3</maven.compiler.version> 
    <java.version>1.8</java.version> 
    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> 
</properties> 

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

<dependencyManagement> 
    <dependencies> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-web</artifactId> 
      <version>4.3.3.RELEASE</version> 
     </dependency> 
     <dependency> 
      <groupId>org.springframework</groupId> 
      <artifactId>spring-aspects</artifactId> 
      <version>4.3.3.RELEASE</version> 
     </dependency> 
    </dependencies> 
</dependencyManagement> 
<build> 
    <plugins> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-surefire-plugin</artifactId> 
      <configuration> 
       <skipTests>true</skipTests> 
      </configuration> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-source-plugin</artifactId> 
      <executions> 
       <execution> 
        <id>attach-sources</id> 
        <goals> 
         <goal>jar</goal> 
        </goals> 
       </execution> 
      </executions> 
     </plugin> 
     <plugin> 
      <groupId>org.codehaus.mojo</groupId> 
      <artifactId>buildnumber-maven-plugin</artifactId> 
     </plugin> 
     <plugin> 
      <groupId>org.apache.maven.plugins</groupId> 
      <artifactId>maven-compiler-plugin</artifactId> 
      <version>${maven.compiler.version}</version> 
      <configuration> 
       <source>${java.version}</source> 
       <target>${java.version}</target> 
       <encoding>${project.build.sourceEncoding}</encoding> 
      </configuration> 
     </plugin> 
    </plugins> 
    <pluginManagement> 
     <plugins> 
      <plugin> 
       <groupId>org.codehaus.mojo</groupId> 
       <artifactId>aspectj-maven-plugin</artifactId> 
       <version>1.9</version> 
       <configuration> 
        <showWeaveInfo>true</showWeaveInfo> 
        <forceAjcCompile>true</forceAjcCompile> 
        <source>${compiler.version}</source> 
        <target>${compiler.version}</target> 
        <Xlint>ignore</Xlint> 
        <complianceLevel>1.8</complianceLevel> 
        <encoding>UTF-8</encoding> 
        <verbose>true</verbose> 
        <weaveDirectories> 
         <weaveDirectory>${project.build.outputDirectory}</weaveDirectory> 
        </weaveDirectories> 
       </configuration> 
       <executions> 
        <execution> 
         <phase>process-classes</phase> 
         <goals> 
          <goal>compile</goal> 
         </goals> 
        </execution> 
       </executions> 
       <dependencies> 
        <dependency> 
         <groupId>org.aspectj</groupId> 
         <artifactId>aspectjrt</artifactId> 
         <version>${aspectjrt.version}</version> 
        </dependency> 
        <dependency> 
         <groupId>org.aspectj</groupId> 
         <artifactId>aspectjtools</artifactId> 
         <version>${aspectjrt.version}</version> 
        </dependency> 
       </dependencies> 
      </plugin> 
     </plugins> 
    </pluginManagement> 
</build> 

+0

如果你使用Spring,你根本使用AspectJ編譯器的原因是什麼?對於簡單的用例,「Spring組件方法攔截」基於代理的Spring AOP就足夠了。您沒有展示任何方面和應用程序代碼,這就是我問的原因。在我們嘗試解決AspectJ Maven問題之前,讓我們確保您確實需要插件。 – kriegaex

+0

@ kriegaex這是我的錯誤。在我創建這個項目之前。我發現了一些使用這個插件的例子,所以我只是按照這個例子來創建我的項目,儘管我不太清楚它。這是我的錯誤。在我的pom中對aspecj-maven插件發表評論後,它確實有效。非常感謝你。 – user2256235

+0

好的,我從我的評論中創建了一個答案。你不能接受它來解決問題。 – kriegaex

回答

1

如果你使用Spring,你有什麼理由使用AspectJ編譯器?對於簡單的用例,「Spring組件方法攔截」基於代理的Spring AOP就足夠了。你沒有顯示任何方面和應用程序代碼,這就是爲什麼我問。在我們嘗試解決AspectJ Maven問題之前,讓我們確保您確實需要插件。

相關問題