Example of spring configuration file:
Will try to explain it to you line by line:
//Should ideally be
class="org.springframework.orm.jpa.vendor.HibernateJpaVendorAdapter"/>
, this allows Spring
to plug in vendor-specific behavior into Spring's EntityManagerFactory
creators and it serves as single configuration point for all vendor-specific properties.It's a custom implementation of spring's own JpaVendorAdapter
.For the second bean where you have declared:
transactionManager
whose properties are entityManagerFactory
and jpaDialect
. Since these properties have to specific to hibernate
these are set according. The entityManagerFactory
and jpaDialect
are now set specifically to hibernate
(or Vendor).As for the third bean
...
...
org.hibernate.ejb.HibernatePersistence
The
tells spring to use the hibernate
provider and the class org.hibernate.ejb.HibernatePersistence
is Hibernate EJB3 persistence provider implementation.
In short, you need to configure these in order to tell spring which ORM's functionality should be used.
The reason that your application worked with configuring just persistence and provider is because the vendor adapter is automatically passed the persistence provided i.e. HibernatePersistence
via the getPersistenceProvider
in JpaVendorAdapter
.
Tinker around the documentation to understand how these classes are interlinked.
EDIT : As pointed out by @TheKojuEffect , the first bean should ideally be in the form of :
Thanks. Missed the vendorAdapter
.
You can refer :
Hope it helps. :)