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?

link|improve this question

Think this is because your Table class is running behind a (spring?) proxy on your app server while your test class(?) is expecting to find a real instance. (Edit) Re-reading that, it sounds obvious but I don't think there's a way for your client to get the real object. I had a similar problem in the past but don't think I found a workaround. – wmorrison365 Feb 3 at 11:55
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.