tags:

views:

43

answers:

3

What book/article do you recommend for learning hibernate?

+1  A: 

Java Persistence With Hibernate is quite in-depth and complete, containing quite a bit of sample code as well.

A good rule of thumb is to use the more generic JPA APIs when possible, and use specific Hibernate calls where necessary.

alt text

Lyle
+1  A: 

I used the Hibernate online documentation. Really! :-)

splash
+1  A: 

The Official Tutorial and documentation is a great reference for learning Hibernate.

Ryan Hayes