vote up 3 vote down star
1

Hi I am new to AspectJ and I would like to find out if creating variants of a class using Aspects - I will create another instance of the class as well?

flag
This question is very unclear, can you please restate it, explain in more detail what you are trying to do? – James Black Oct 27 at 13:26

2 Answers

vote up 1 vote down check

I am guessing that the question is, if I am adding aspects would a new class be created.

The answer is no, as the weaving, either when compiling or at run-time, using AspectJ, will add the changes to the classes that are affected by the aspects, so there is no new class created, it is just that the byte code for the original class and the final class are different.

link|flag
vote up 0 vote down

What do you mean by variants? If you are asking if AspectJ instantiates copies of your class, the answer is no. AspectJ uses a design pattern called proxy to intercept calls to your class.

link|flag
Spring AOP uses a proxy. AspectJ will modify the bytecode, either by weaving in the changes, or as part of the compilation. – James Black Oct 27 at 13:26

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.