From: mlybarger <nu...@jb...> - 2005-07-01 01:29:25
|
I'm now getting very close i think. after changing to use the AspectManagerServiceJDK5, i now get lots of aspect info in the logs. I see this when my class is loaded: | 21:23:24,329 INFO [STDOUT] method matched binding execution(* org.test.*->*(..)) protected void org.test.ProfTest.doGet(javax.servlet.http.HttpServletRequest,javax.servlet.http.HttpServletResponse) throws javax.servlet.ServletException,java.io.IOException | but when this method is executed, i don't see anything being logged. here's the snipped from the base-aop.xml for what i'm binding.: | <interceptor class="org.jboss.aspects.logging.CallLoggingInterceptor"/> | <bind pointcut="execution(* org.test.*->*(..))"> | <interceptor-ref name="org.jboss.aspects.logging.CallLoggingInterceptor"/> | </bind> | View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3883300#3883300 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3883300 |