jar « aspectj « Java Enterprise Q&A





1. Why do my aspects get executed in their original setting and not when packed as a separate jar and called from elsewhere?    stackoverflow.com

I am a newbie to aspectj... I have written the following aspect which is intended to add logging to function calls of type public * doSomething*(..). If my main class is ...

2. What does aspectj-weaver.jar do?    stackoverflow.com

What does aspectj-weaver.jar do? What are its common uses?

3. aspectj iajc fails when subclass inherits an intertyped method woven into its base class and defined in a separate jar    stackoverflow.com

I am using aspectJ to inject an interface implementation. Eclipse compiles everything just fine. However the project has to be built with ant as well. iajc task fails with: " type Foo must implement ...

4. Weaving Aspects into Jars that are in a jar    stackoverflow.com

I'm working with a pretty loaded jar file (DaCapo Benchmarks for those interested) and I want to weave aspects into all the classes contained in that jar file. However, ...

5. Weaving the same aspect into multiple jars    stackoverflow.com

I've been having problems weaving this project correctly with AspectJ (ajc). Here's the situation : I'm using a benchmarking library called DaCapo Benchmarks, and in it I'm trying to intercept all calls ...