vote up 2 vote down star

I'm writing a library that will be used to Hibernate many types of EJBs via JPA. When loading an EJB from JPA, the library needs the datatype of the field(s) annotated with @Id. The @Id may be annotated on a superclass of the EJB. Is there a method in Hibernate or JPA that can get the datatype of @Id?

I'm tempted to use reflection, but this would require recursion and code that probably already exists in JPA.

flag

76% accept rate

1 Answer

vote up 4 vote down check

If you can get to the Hibernate SessionFactory you can call sf.getClassMetaData("Your.Class.Name").getIdentifierType().getReturnedClass() (remember to null check that code ;)

link|flag
Thanks so much. That worked! – User1 Aug 25 at 16:42

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.