Java - Hibernate
Hibernate
- is an implementation of the JPA specification
Intro
- a connection pool provides a way to store and reuse
java.sql.Connection
instances for speed and robustness - a hibernate
Session
is a wrapper around aConnection
in order to allow you to save your POJOs without directly writing the SQL - when you call
SessionFactory.openSession
hibernate first takes aConnection
from the connection pool. It then creates aSession
around thatConnection
and returns it
Subpages
, multiple selections available,