Hibernate statistics page

Hi ! We were some time ago at a presentation about hibernate (at a Karlsruhe JUG event). The presenter, Michael Plöd showed us a nice Hibernate statistics page. As you can bet, we went for reusing it However, in doing so, some issues appeared, and in the end we thought the updated version could be [...]

Hibernate default fetching strategy…

hi We all know that the default fetching strategy for hibernate is lazy. But, wait, is it, really ? As you might have guessed by now, it’s not. Indeed, for @OneToOne and @ManyToOne annotations (and only theses annotations), the default is eager. Funny no ? Oh, I forgot : don’t ask me why, I can [...]

Hibernate & mysql5 dialect: just frightening…

did you know? http://opensource.atlassian.com/projects/hibernate/browse/HHH-468. Note that this issue (like some of my favorite) is now open since 2005.

Hibernate, HSQL, Native Queries and Booleans

I use an in-memory HSQL Database in order to test my JPA/Hibernate Application. Common thing. That explains my surprise on the following situation: I have an Entity with a boolean member: @Entity public class Foo{ @Id int id; boolean bar; [..] } Everything works as expected up to here. But then, i use a native [...]

Hibernate 90% vs 10%

I found this to be true, especially the bold statement. Unfortunately this is more a JBoss issue than a Hibernate Issue as this problem is very obvious in the SEAM ‘community’ as well. Open-source projects in general are a liability but Hibernate specifically has a serious support problem. Unless you pay the organization money you [...]