Hi all, 
I have a simple Annotation like following:

  | @Target(METHOD)
  | @Retention(RUNTIME)
  | @Interceptors(PrintoutInterceptor.class)
  | public @interface Printout {
  | }
  | 

and the Interceptor class:

  | public class PrintoutInterceptor {
  | 
  |     @AroundInvoke
  |     public void printOut(InvocationContext invocation) throws Exception {
  |     System.out.println("Method "+invocation.getMethod()+" is called");
  |         invocation.proceed();
  |     }
  | }

And then i tried to put this annotation on a method, 

  | ....
  | @Printout
  | public String register(.....)
  | .....
  | 

BUT, 
the interceptor doesnot work :(
can anyone help?
Thanks !!


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4040227#4040227

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4040227
_______________________________________________
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

Reply via email to