This content has been marked as final.
Show 4 replies
-
1. Re: How can I create a point cut to monitor a method of an i
oliver_zzx Nov 1, 2005 1:26 PM (in response to sylcheung)i think that works over cFlows.
check that pdf for details. really good thesis:
http://dalager.com/thesis/JBoss4-AOP-MasterThesis-all.pdf -
2. Re: How can I create a point cut to monitor a method of an i
sylcheung Nov 2, 2005 11:12 AM (in response to sylcheung)Can you tell me how can i find out the name of the caller from the interceptor?
Thank you. -
3. Re: How can I create a point cut to monitor a method of an i
oliver_zzx Nov 3, 2005 6:29 AM (in response to sylcheung)sorry, hadnt used it by myself yet. i still stuck at getting interceptors running :/ if you got a package for me with an interceptor that is running at you, please tell me ;) I'd like to try it with it to see if my jboss-config is right...
-
4. Re: How can I create a point cut to monitor a method of an i
rmcdonough Nov 4, 2005 10:29 PM (in response to sylcheung)Just clarify a bit, are you looking at smoehting more like this:
class A { private List list; public void a(String value); list.add(value); }
and you'd like to intercept the add() method of the List?
Ryan-