I need to inject few methods to every initialized object using AspectJ.
I thought using this :
pointcut vistaInjection(Object o)
: initialization(java.lang.Object.new() )
&& target(o)
&& !within(objectAspect);
before(Object o): methodInjection(o){System.err.println("INIT");}
to pointcut initialization of object, so I can inject these methods directly into the object that is part of every other object.
However, it does't work. Do you have any idea why? Or what may be an other way how to make 100% sure that every single initialized object will be pointcut? *.new does not work for stuff such String, Lists and others.
Thank you!
Have you tried
i.e. calling
.new()
on anything and allowing no and some arguments.Note - you probably don't want to pick up all object creations.. what are you planning on doing with them!
User selig is right: You probably do not want to intercept all object creations, especially not those in JDK/JRE classes. But for what it is worth, here is an explanation of what works and how and what not:
A little driver application:
An aspect with different types of constructor-related pointcuts/advice:
The woven driver application's output:
Explanation:
There are different types of weaving in AspectJ:
Now what you can easily do is intercept calls to JDK/JRE constructors from your own code oder woven 3rd party code, as you can see in the log output line saying
call(java.lang.String())
. You cannot intercept internal calls from JRE class to JRE class though.Having said all that I really wonder what kind of horrible thing you want to do. I mean, you explain it and it sounds like a tremendous design error. Or you want to re-invent the wheel and write some kind of profiler or debugger which already exists. What do you expect from intercepting each single object creation? It would tremendously slow down your application, drastically increase memory consumption and create even more objects, if only the strings you are logging. Please reconsider and try to think about what you really want to do. Maybe then we can suggest a smart way of achieving your goal.