Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[aspectj-users] Problem with load-time weaving

Hi there,

currently I have a problem with AJDT's load-time weaving capability. Unforntunately the following pointcut is not applied:

pointcut mainMethodCall() : execution(static void main(String [])) && !within(TestAspect) && !within(setup..*);

For compile-time weaving the same aspect works out. Any ideas?

Best Nikolas


Back to the top