Аспект не найден во время выполнения - PullRequest
1 голос
/ 16 сентября 2011

Я пытаюсь добавить aspectj в проект maven, используя Java 6.0. Использование версии 1.4 aspectj-maven-plugin и версии aspect версии 1.6.11.

Классы находятся во внешней банке зависимостей, а вот 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 голосов
/ 16 сентября 2011

Наиболее очевидная причина в том, что на test.pkg1.pkg2.Payment нет метода с подписью

void setDetails(List)

.Это не похоже на проблему AspectJ - это скорее проблема неправильного кода на пути во время выполнения classpath.

...