在运行时期间未找到方面

时间:2011-09-15 22:47:18

标签: java maven aspectj

我正在尝试使用java 6.0将aspectj添加到maven项目中。 使用1.4版本的aspectj-maven-plugin和1.6.11版本的aspectj。

这些类位于外部依赖jar中,这里是pom:

 <plugin>
    <groupId>org.codehaus.mojo</groupId>
    <artifactId>aspectj-maven-plugin</artifactId>
    <configuration>
      <complianceLevel>1.6</complianceLevel>
      <source>1.6</source>
      <target>1.6</target>          
      <showWeaveInfo>true</showWeaveInfo>
      <weaveDependencies>
        <weaveDependency>
          <groupId>${project.groupId}</groupId>
          <artifactId>gem</artifactId>
        </weaveDependency>
      </weaveDependencies>          
    </configuration>
    <executions>
      <execution>
        <!-- Needs to run before the regular javac compile phase -->
        <phase>process-sources</phase>
        <goals>
          <goal>compile</goal>
        </goals>
      </execution>
    </executions>
  </plugin>

这些方面似乎在构建期间应用得很好: 这是一个示例:

[INFO] --- aspectj-maven-plugin:1.4:compile (default) @ test ---
[INFO] Extending interface set for type 'test.pkg1.pkg2.PaymentEnquiry' (PaymentE
 nquiry.java) to include 'test.pkg1.pkg2.aj.AdditionalPaymentEnquiryMethods'    
(PaymentEnquiryExtensions.aj)

但是在运行时,我收到以下错误:     java.lang.NoSuchMethodError:
    test.pkg1.pkg2.Payment.setDetails(Ljava / UTIL /列表;)V

任何关于为什么会发生这种情况的想法都会有所帮助。

1 个答案:

答案 0 :(得分:0)

最明显的原因是没有带签名的方法

void setDetails(List)

on test.pkg1.pkg2.Payment。它似乎不像AspectJ问题 - 更多的是错误的运行时类代码路径问题。