I have to be sure that a snippet of code get executed in all public methods of classes under a certain package:
public String doStuff(String a, Integer b, Context c) {
current.put(c); <--- code that need to be executed
// business logic
...
}
What would be the best approach for ensuring that that snippet of code is always present AS THE FIRST LINE of each public method?
I have considered using some static code analysis tool, such as PMD. Also, I believe compile time AOP could help. Any more idea, pointers?
I know that I can use an Aspect for that. Problem is that my application is using Spring but the classes I need to "check" are not spring managed - also, I'd like to avoid changing the server start options to enable Spring annotation based run time weaving.
EDIT: The classes I have to enforce the code on are Akka Typed Actors.