[JBoss-user] [JBoss AOP] - Re: Aspectizing using

2005-12-05 Thread [EMAIL PROTECTED]
Weaving is done on the class instances, not interfaces. So all subclasses that have been annotated, and all classes with annotated fields should get woven View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3910754#3910754 Reply to the post : http://www.jboss.com/

[JBoss-user] [JBoss AOP] - Re: Aspectizing using

2005-12-05 Thread jlukar
Thanks Kabir, that actually was a concern as to if reflection was going to be a concern espacially when you are working for real-time trading applicaiton. It seems that this allows doing away with reflection calls. my original question though is why the other classes in my project are being

[JBoss-user] [JBoss AOP] - Re: Aspectizing using

2005-12-02 Thread [EMAIL PROTECTED]
Yes, for each field on a class that is advised/prepared you get two extra classes generated. They are subclasses of FieldReadInvocation and FieldWriteInvocation. The reason for generating these is that the original FieldRead- and FieldWriteInvocation classes access the target field via reflecti