AspectJ problem
2 answers
I guess the question is if I add aspects a new class will be created.
The answer is no, since weaving, either at compile time or at runtime using AspectJ, will add changes to the classes that are affected by the aspects, so there is no new class created, the byte code for the source class and the final class are different.
+1
source to share