Grails, Hibernate and JPA: hanging application
Published October 15th, 2007 in Grails, Groovy and Grails, Hibernate, JPAWhen developing an application in Grails I’ve been adding a backend written for JPA. This should be no problem - you think. But while the unit test for the JPA backend work fine for themselves, when adding the backend to the Grails application, Grails hangs when accessing the EntityManager. It does not help that all my efforts to join the Grails mailing list with my gmail address have failed so far. I have no clue how to fix this problem which took most time out of my last weekend :-) Perhaps Hibernate does not like to act as a Grails ORM and at the same time as a JPA provider. Or I have JAR conflicts. Any ideas?
Update: It has been suggested that the problem might be that there are several incompatible ASM jars in the classpath.
5 Responses to “Grails, Hibernate and JPA: hanging application”
- 1 Pingback on Oct 24th, 2007 at 7:55 am
I’ve had problems in the past mixing Spring 2.0, Hibernate 3.x, and JPA. The problem usually comes down to the “asm.jar” file, which is normally included in both the Hibernate library and the Spring 2.0 library. Unfortunately, each includes a different version, and the conflict breaks the application.
I do remember seeing a post on one of email lists you mentioned about a similar conflict. Grails is built on top of both Spring and Hibernate, so maybe that’s not surprising.
By the way, if you can’t get into the email lists directly, both are archived at Nabble:
http://www.nabble.com/codehaus—Groovy-f11866.html for Groovy, and
http://www.nabble.com/grails—user-f11861.html for Grails.
Good luck,
Ken Kousen
–
My blog is at http://kousenit.wordpress.com
Thanks Ken, I’ll take a look there, and perhaps try to remove one asm.jar from the classpath.
you can post to those forums: http://www.nabble.com/codehaus—grails-f11860.html
@Ray: Thanks, I’ll try that approach.