vote up 0 vote down star

Hi,

I have found out that "Hibernate cannot be combined with the reference implementation of JAX-RS." on the link http://lists.jboss.org/pipermail/hibernate-issues/2009-May/015628.html

So i am unable to combine JAX-RS (jersey) with hibernate, does anybody know a work around for this ?

flag

2 Answers

vote up 1 vote down

Upgrade to a Hibernate 3.3.2 or later.

If you follow the link to the bug report that message was generated from, it indicates that the latest versions of Hibernate (since 3.3.2) use a different bytecode manipulation package (Javassist), which eliminates the conflict over ASM which caused the problem.

link|flag
HIbernate 3.3.2 didnt help, i think we still need to instruct hibernate to use javassist in hibernate.properties file, where my project uses hibernate.cfg.xml file, and we cannot enforce javassist in xml file. – unknown (google) Jun 10 at 5:38
vote up 1 vote down

The root of evil is cglib. Substitute cglib-2.1.3.jar to cglib-nodep-2.1_3.jar and delete hibernate's asm*.jar files.

link|flag

Your Answer

Get an OpenID
or

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