I've created a custom annotation on my project
@Retention(RetentionPolicy.RUNTIME)
public @interface Table {
String alias();
String column();
String operator();
}
and everything was fine until I deployed my project on jboss...
In the beginning
field.isAnnotationPresent(Table.class)
started to return false I've changed to
field.getAnnotations().length >= 1 (...)
but then I discovered that jboss somehow was wrapping my Table class on a proxy because
(Table) field.getAnnotations()[0]
returned
java.lang.ClassCastException: $Proxy998
So, i'm stuck i a don't wanna change all my code and "reflect" all over Proxy998. Does any one had the same problem?