Try setting the RetentionPolicy on your method annotation.
@Target({ElementType.METHOD})
| @Retention(RetentionPolicy.RUNTIME)
| public @interface MyAnnotation {}
This solved the problem for me.
View the original post :
http://www.jboss.org/index.html?module=bb&op=viewtopic&p=4249277#...
Reply to the post :
http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&a...