Hello,
I have many classes implementing a common interface, e.g.
interface MyInterface {
void foo();
void bar();
}
And I want to inject profiling code around these methods to profile all their implementation in all those classes without modifying those code (some of them are not written by me). How to do this in Spring AOP and/or Aspect J?
Thx
Chuck
