Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

We have recently upgraded maven-aspectj-plugin and aspectj jars from 1.2/1.6.5 to 1.4/1.6.11 Ever since, my application doesn't find the aspected methods on the classes and throws a 'MethodNotFound' exception during runtime. One thing I have observed by decompiling the aspected classes for the different versions is that the newer version doesn't have the @ajcITD annotation anymore.

1.6.5:

@ajcITD(targetType="test.TestBase", name="getTestDetails", modifiers=1)
public List<TestDetail> getTestDetails() { return      
TestBaseExtentions.ajc$interMethod$
  test_TestBaseExtentions$TestBase$getTestDetails(this); } 

1.6.11:

public List<TestDetail> getTestDetails() { return     
TestBaseExtentions.ajc$interMethod$
  test_TestBaseExtentions$TestBase$getTestDetails(this); } 

Any ideas as to whether this is causing the runtime failure would be most appreciated.

share|improve this question

1 Answer

You could try including aspectjtools dependency which contains this annotation definition.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.