From what I understand, for load time weaving to work using an aop.xml file, it must be placed in META-INF. Is there a way to get around this and use an ...
I am having trouble understanding aspectJ's compile-time and load-time weaving and figuring out what to use(and how to use ajc) to compile and build my project.
Here's my project structure:-
I want to do trace logging in a program by weaving in proxies in the IL. What are some current frameworks that are good for this?
(Most of the ones I've ...
I'm trying to set pointcut on private method java.net.AbstractSocketImpl.connectToAddress(..) and I want to use load-time weaving. This is my test code:
public class Main {
public static void main(String ...
I've ran into a very strange issue with AspectJ using load time weaving. My goal was simple: intercept setter calls on my domain objects and do some extra work on the ...