So, I\'ve started looking into using AspectJ to handle processing events when the state of an object in my domain changes.
i want to intercept method from a non-proxied object. I have a class instance MyClass myClassInstance=new MyClass() and i want to intercept call of myClassInstance m开发者_StackOverflow中文版ethods.
I was won开发者_如何学编程dering if there is a way to activate the auto completion on the primitive pointcut definition in eclipse. It is very annoying to write the full qualified name of a class meth
I\'m using AspectJ annotations instead of writing actual aspect files. I want to expose an annotation value to my advice.
As mentioned in a previous qu开发者_运维技巧estion I am trying to check that all my ResultSet are closed. For that I want to use AspcetJ but after 1 day of hard fight I am not able to use aspects in a
Does anybody success in using AspectJ load-time weaving with signed jars? I got an exception and have no idea how to fix it (tested 开发者_StackOverflowwith AspectJ 1.6.8-16.10):
Using AspectJ, how do you replace an existing annot开发者_开发百科ation? I have the following code
I just read that it is not possible to define a pointcut on a single array element (bug link). Considering I really need to detect an array element modification, I would like to know if there is any w
I get java.lang.OutOfMemoryError: Java heap space when I try to compile an aspecj project. The project is a ma开发者_C百科ven 2 project and I have set maven-compiler-plugin to use up to 2048m memo
I use declare error and declare warning to enforce some policies; but in some specific cases I would like to get rid of the warning.