SlideShare una empresa de Scribd logo
1 de 20
Spring Part - 3
Course Contents
• Who This Tutor Is For
• Introduction
• Do you recall Hibernate?
• Why to Integrate Hibernate with Spring
• Integrating Hibernate with Spring
    • Step 1: Set Hibernate Libraries in classpath
    • Step 2: Declare a bean in Spring Config file for Hibernate Session Factory
    • Step 3: Inject session factory into Hibernate template.
    • Step 4: Inject hibernate template into DAO classes.
    • Step 5: Define the property HibernateTemplate in each DAO classes
    • Step 6: Use hibernate Queries through Hibernate Template object in DAO.
• HibernateDaoSupport
• Using Hibernate 3 contextual sessions
• Source code download links
Who This Tutor Is For?
After going through this session, you will understand the Spring and Hibernate
integration. Also you can know how spring provides support to use Hibernate features
with Spring framework. You should have basic understanding on Spring Core parts, Spring
IOC (dependency injection). If you are new to Spring, I would suggest you to refer my
Spring part -1 (Beginning of Spring) before going through this session. As well you must
know the Hibernate Architecture and it’s features before going through this tutor. You can
also visit my Spring part-2 (Spring and Database) to know how one can use Spring with
basic data connection.

You can download the source codes of the examples given in this tutor from Download
Links available at http://springs-download.blogspot.com/


Good Reading…

Author,
Santosh
Introduction:
In Spring part-1, we had the basic understanding on using Spring and the use of DI
(Dependency Injection) and in part-2 the Spring and DB connection.

In this tutor, Spring part-3, we will see the interaction with Hibernate in Spring.

Spring comes with a family of data access frameworks that integrate with a variety
of data access technologies. You may use direct JDBC, iBATIS, or an object
relational mapping (ORM) framework like Hibernate to persist your data. Spring
supports all of these persistence mechanisms.
Do you recall Hibernate?
Hibernate is an open source project whose purpose is to make it easy to integrate
relational data into Java programs. This is done through the use of XML mapping
files, which associate Java classes with database tables.

Hibernate provides basic mapping capabilities. It also includes several other
object/relational mapping (ORM) capabilities, including:
• An enhanced, object-based SQL variant for retrieving data, known as Hibernate
   Query Language (HQL).
• Automated processes to synchronize objects with their database equivalents.
• Built-in database connection pooling, including three opensource variants.
• Transactional capabilities that can work both stand-alone or with existing Java
   Transaction API (JTA) implementations.

The goal of Hibernate is to allow object-oriented developers to incorporate persistence
into their programs with a minimum of effort.
Why to Integrate Hibernate with Spring
Spring Integrates very well with Hibernate. If someone asks why do we need to
integrate hibernate in Spring? Yes, there are benefits.

• The very first benefit is the Spring framework itself. The IoC container makes
  configuring data sources, transaction managers, and DAOs easy.
• It manages the Hibernate SessionFactory as a singleton – a small but
  surprisingly annoying task that must be implemented manually when using
  Hibernate alone.
• It offers a transaction system of its own, which is aspectoriented and thus
  configurable, either through Spring AOP or Java-5 annotations. Either of these
  are generally much easier than working with Hibernate’s transaction API.
• Transaction management becomes nearly invisible for many applications, and
  where it’s visible, it’s still pretty easy.
• You integrate more easily with other standards and frameworks.
Integrating Hibernate with Spring
A typical Hibernate application uses the Hibernate Libraries, configures its
SessionFactory using a properties file or an XML file, use hibernate session etc. Now
let’s discuss the steps we must follow while integrating Hibernate with Spring.

Step 1: Set Hibernate Libraries in classpath.
Step 2: Declare a bean in Spring Config file for Hibernate Session Factory.
Step 3: Inject session factory into Hibernate template.
Step 4: Inject hibernate template into DAO classes.
Step 5: Define the property HibernateTemplate in each DAO classes.
Step 6: Use hibernate Queries through Hibernate Template object in DAO.

Let’s discuss all these steps one by one.
Step 1: Set Hibernate Libraries in classpath


To integrate Hibernate with Spring, you need the hibernate libraries along with
Spring.

So the first step should be downloading all the necessary library jars for Hibernate
and set those jars into the project classpath just like you already have set the Spring
libraries..
Step 2: Declare a bean in Spring Config file for Hibernate Session Factory


A typical Hibernate application uses the Hibernate Libraries, configures its
SessionFactory using a properties file or an XML file, use hibernate session etc. Now
let’s discuss the steps we must follow while integrating Hibernate with Spring.

A typical Hibernate application configures its SessionFactory using a properties file
or an XML file.

First, we start treating that session factory as a Spring bean.

• Declare it as a Spring <bean> and instantiate it using a Spring
  ApplicationContext.
• Configure it using Spring <property>s, and this removes the need for a
  hibernate.cfg.xml or hibernate.properties file.
• Spring dependency injection – and possibly autowiring – make short work of this
  sort of configuration task.
• Hibernate object/relational mapping files are included as usual.
In our example, we do use 2 .hbm files: Employee.hbm.xml & Department.hbm.xml
The databse is MySql and using the driver based datasource in Spring.

Remember, here the session factory class used is : LocalSessionFactoryBean.


                                                                      Datasource is injected into
                                                                      SessionFactory


                                                                   All hbm files must be mapped here...



                                                                       Hibernate.dialect -> declare dialect
                                                                       types according to your database.




                                                                 We are not discussing more on different
                                                                 datasource types. You can visit our
                                                                 Spring part-2 section to know more on
                                                                 declaring datasources.
Step 3: Inject session factory into Hibernate template.
In step 1, we declared the session factory.
In step 2 here, we are injecting that session factory into Hibernate Template. The hibernate template class
is: org.springframework.orm.hibernate3.HibernateTemplate




Step 4: Inject hibernate template into DAO classes.




Observe, we have declared the bean MyHibernateTemplate in Step 3.
MyHibernateTemplate is now injected into the DAO classes such as org.santosh.dao.EmployeeDao and
org.santosh.dao.DepartmentDao.
Step 5: Define the property HibernateTemplate in each DAO classes




                                                               One      of     the      responsibilities  of
                                                               HibernateTemplate is to manage Hibernate
                                                               Sessions. This involves opening and closing
                                                               sessions as well as ensuring one session per
                                                               transaction. Without HibernateTemplate,
                                                               you’d have no choice but to clutter your DAOs
                                                               with boilerplate session management code.




Import the class org.springframework.orm.hibernate3.HibernateTemplate. The setter method is
required as we inject the hibernateTemplate into the DAO class in step 4.
Step 6: Use hibernate Queries through Hibernate Template object in DAO.




In Hibernate we were using the methods such as session.get(…), session.load(…), session.save(…),
session.saveOrUpdate(…), session.delete(…) etc. All such methods are now used using
hibernatetemplate. For example we use getHibernateTemplate().get(Employee.class, id) which
reattach the Employee object from DB.
HibernateDaoSupport
So far, the configuration of DAO class (e.g. EmployeeDao or DepartmentDao) involves four beans.
• The data source is wired into the session factory bean through LocalSessionFactoryBean
• The session factory bean is wired into the HibernateTemplate.
• Finally, the HibernateTemplate is wired into DAO (e.g. EmployeeDao or DepartmentDao), where it is
   used to access the database.

To simplify things slightly, Spring offers HibernateDaoSupport, a convenience DAO support
class, that enables you to wire a session factory bean directly into the DAO class. Under the
covers, HibernateDaoSupport creates a HibernateTemplate that the DAO can use.

So the only thing you
1. Extend the class HibernateDaoSupport in each of the DAO class.
2. Remove the property HibernateTemplate as it is already provided in HibernateDaoSupport
    class.

The rest of the code will remain unchanged.

Now lets change the EmployeeDao class and implement the HibernateDaoSupport.
No changes in the spring configuration XML
                                             Extended HibernateDaoSupport


                                                              Ignore and don’t use this in any of
                                                              your DAO class because you extends
                                                              HibernateDaoSupport and so this
                                                              class had already done this for you.




                                                                Simply use the methods with
                                                                getHibernateTemplate() method as
                                                                you were using session.get(),
                                                                session.load() etc. in hibernate
Using Hibernate 3 contextual sessions
As we saw that one of the responsibilities of HibernateTemplate is to manage Hibernate
Sessions. This involves opening and closing sessions as well as ensuring one session per
transaction.
But the HibernateTemplate is coupled to the Spring Framework. So some developers may find
such Spring’s intrusion undesirable to use in the DAO class so instead of using the
HibernateTemplate in DAO, they prefer to use the HibernateSession in that place.

So Hibernate 3 provides the cotextual session where Hibernate manages one session per
transaction so there is no need to use the Hibernte template. So use HibernateSession without
coupling your DAO class fully with Spring.

To implement the contextual session in Hibernate 3, you need to inject sessionFactory in place
of HibernateTemplate in Spring configuration file.
                                                                        No hibernateTemplate,
                                                                        uses SessionFactory
Writing DAO class




                    Injected SessionFactory (not HibernateTemplate)




                    Uses Hibernate session from SessionFactory
End of Part-3
In part – 1 we learned the basics of Spring. And in part-2 we saw how we can work with
Databases in Spring, in part-3 we discussed the integration of Hibernate with Spring.

In further parts we will see,

      Part – 4 : Spring - Managing Database Transactions

      Part – 5 : Spring - Security

      Part – 6 : Spring AOP

      Part – 7 : Spring MVC
Source code Download Links
You can download at http://springs-download.blogspot.com/


•   SpringHibernateTemplate

•   SpringHibernateDaoSupport

•   SpringHibernateContextualSession
Do you have Questions ?
Please write to:
santosh.bsil@yahoo.co.in

Más contenido relacionado

La actualidad más candente

Spring boot
Spring bootSpring boot
Spring bootsdeeg
 
Introduction to Spring Framework
Introduction to Spring FrameworkIntroduction to Spring Framework
Introduction to Spring Framework Serhat Can
 
Hibernate architecture
Hibernate architectureHibernate architecture
Hibernate architectureAnurag
 
jpa-hibernate-presentation
jpa-hibernate-presentationjpa-hibernate-presentation
jpa-hibernate-presentationJohn Slick
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API07.pallav
 
Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Hitesh-Java
 
Spring Framework
Spring FrameworkSpring Framework
Spring Frameworknomykk
 
Spring Framework - AOP
Spring Framework - AOPSpring Framework - AOP
Spring Framework - AOPDzmitry Naskou
 
Spring Framework - MVC
Spring Framework - MVCSpring Framework - MVC
Spring Framework - MVCDzmitry Naskou
 
Spring framework Introduction
Spring framework IntroductionSpring framework Introduction
Spring framework IntroductionAnuj Singh Rajput
 
Hibernate
HibernateHibernate
HibernateAjay K
 
Building RESTful applications using Spring MVC
Building RESTful applications using Spring MVCBuilding RESTful applications using Spring MVC
Building RESTful applications using Spring MVCIndicThreads
 

La actualidad más candente (20)

Spring boot
Spring bootSpring boot
Spring boot
 
Spring data jpa
Spring data jpaSpring data jpa
Spring data jpa
 
JPA and Hibernate
JPA and HibernateJPA and Hibernate
JPA and Hibernate
 
Introduction to Spring Framework
Introduction to Spring FrameworkIntroduction to Spring Framework
Introduction to Spring Framework
 
Hibernate architecture
Hibernate architectureHibernate architecture
Hibernate architecture
 
jpa-hibernate-presentation
jpa-hibernate-presentationjpa-hibernate-presentation
jpa-hibernate-presentation
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API
 
Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans Spring - Part 1 - IoC, Di and Beans
Spring - Part 1 - IoC, Di and Beans
 
Spring Framework
Spring FrameworkSpring Framework
Spring Framework
 
Spring Framework
Spring FrameworkSpring Framework
Spring Framework
 
Spring Framework - AOP
Spring Framework - AOPSpring Framework - AOP
Spring Framework - AOP
 
Spring Framework - MVC
Spring Framework - MVCSpring Framework - MVC
Spring Framework - MVC
 
Spring framework Introduction
Spring framework IntroductionSpring framework Introduction
Spring framework Introduction
 
Hibernate
HibernateHibernate
Hibernate
 
Building RESTful applications using Spring MVC
Building RESTful applications using Spring MVCBuilding RESTful applications using Spring MVC
Building RESTful applications using Spring MVC
 
Spring ppt
Spring pptSpring ppt
Spring ppt
 
Hibernate in Action
Hibernate in ActionHibernate in Action
Hibernate in Action
 
Java annotations
Java annotationsJava annotations
Java annotations
 
Java Spring Framework
Java Spring FrameworkJava Spring Framework
Java Spring Framework
 
Introduction to Spring Boot
Introduction to Spring BootIntroduction to Spring Boot
Introduction to Spring Boot
 

Destacado

Writing simple web services in java using eclipse editor
Writing simple web services in java using eclipse editorWriting simple web services in java using eclipse editor
Writing simple web services in java using eclipse editorSantosh Kumar Kar
 
Struts & hibernate ppt
Struts & hibernate pptStruts & hibernate ppt
Struts & hibernate pptPankaj Patel
 
Deploy and Publish Web Service
Deploy and Publish Web ServiceDeploy and Publish Web Service
Deploy and Publish Web Servicepradeepfdo
 
Spring and hibernate santosh'.pdf
Spring and hibernate santosh'.pdfSpring and hibernate santosh'.pdf
Spring and hibernate santosh'.pdfSatya Johnny
 
Model View Controller(MVC)
Model View Controller(MVC)Model View Controller(MVC)
Model View Controller(MVC)Himanshu Chawla
 
Spring hibernate tutorial
Spring hibernate tutorialSpring hibernate tutorial
Spring hibernate tutorialRohit Jagtap
 
Leverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherLeverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherEdureka!
 
Struts(mrsurwar) ppt
Struts(mrsurwar) pptStruts(mrsurwar) ppt
Struts(mrsurwar) pptmrsurwar
 
Hibernate working with criteria- Basic Introduction
Hibernate working with criteria- Basic IntroductionHibernate working with criteria- Basic Introduction
Hibernate working with criteria- Basic IntroductionEr. Gaurav Kumar
 
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData Edureka!
 

Destacado (20)

Springs
SpringsSprings
Springs
 
Spring transaction part4
Spring transaction   part4Spring transaction   part4
Spring transaction part4
 
Spring database - part2
Spring database -  part2Spring database -  part2
Spring database - part2
 
Writing simple web services in java using eclipse editor
Writing simple web services in java using eclipse editorWriting simple web services in java using eclipse editor
Writing simple web services in java using eclipse editor
 
Struts & hibernate ppt
Struts & hibernate pptStruts & hibernate ppt
Struts & hibernate ppt
 
Spring Web MVC
Spring Web MVCSpring Web MVC
Spring Web MVC
 
MVC Architecture
MVC ArchitectureMVC Architecture
MVC Architecture
 
Silverlight
SilverlightSilverlight
Silverlight
 
Deploy and Publish Web Service
Deploy and Publish Web ServiceDeploy and Publish Web Service
Deploy and Publish Web Service
 
Spring and hibernate santosh'.pdf
Spring and hibernate santosh'.pdfSpring and hibernate santosh'.pdf
Spring and hibernate santosh'.pdf
 
Model View Controller(MVC)
Model View Controller(MVC)Model View Controller(MVC)
Model View Controller(MVC)
 
Spring hibernate tutorial
Spring hibernate tutorialSpring hibernate tutorial
Spring hibernate tutorial
 
Leverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features TogetherLeverage Hibernate and Spring Features Together
Leverage Hibernate and Spring Features Together
 
Struts(mrsurwar) ppt
Struts(mrsurwar) pptStruts(mrsurwar) ppt
Struts(mrsurwar) ppt
 
Struts presentation
Struts presentationStruts presentation
Struts presentation
 
Struts framework
Struts frameworkStruts framework
Struts framework
 
Hibernate working with criteria- Basic Introduction
Hibernate working with criteria- Basic IntroductionHibernate working with criteria- Basic Introduction
Hibernate working with criteria- Basic Introduction
 
Spring Security 3
Spring Security 3Spring Security 3
Spring Security 3
 
Maven (EN ESPANOL)
Maven (EN ESPANOL)Maven (EN ESPANOL)
Maven (EN ESPANOL)
 
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData
Webinar: Spring Framework - Introduction to Spring WebMVC & Spring with BigData
 

Similar a Spring & hibernate

Hibernate complete Training
Hibernate complete TrainingHibernate complete Training
Hibernate complete Trainingsourabh aggarwal
 
02 java spring-hibernate-experience-questions
02 java spring-hibernate-experience-questions02 java spring-hibernate-experience-questions
02 java spring-hibernate-experience-questionsDhiraj Champawat
 
Hibernate example1
Hibernate example1Hibernate example1
Hibernate example1myrajendra
 
Hibernate Interview Questions | Edureka
Hibernate Interview Questions | EdurekaHibernate Interview Questions | Edureka
Hibernate Interview Questions | EdurekaEdureka!
 
Java hibernate orm implementation tool
Java hibernate   orm implementation toolJava hibernate   orm implementation tool
Java hibernate orm implementation tooljavaease
 
Hibernate Interview Questions and Answers
Hibernate Interview Questions and AnswersHibernate Interview Questions and Answers
Hibernate Interview Questions and AnswersAnuragMourya8
 
02 Hibernate Introduction
02 Hibernate Introduction02 Hibernate Introduction
02 Hibernate IntroductionRanjan Kumar
 
Learn HIBERNATE at ASIT
Learn HIBERNATE at ASITLearn HIBERNATE at ASIT
Learn HIBERNATE at ASITASIT
 
Hibernate interview questions
Hibernate interview questionsHibernate interview questions
Hibernate interview questionsvenkata52
 
Hibernate Interview Questions
Hibernate Interview QuestionsHibernate Interview Questions
Hibernate Interview QuestionsSyed Shahul
 
Hibernate reference1
Hibernate reference1Hibernate reference1
Hibernate reference1chandra mouli
 
Hibernate presentation
Hibernate presentationHibernate presentation
Hibernate presentationManav Prasad
 

Similar a Spring & hibernate (20)

Hibernate complete Training
Hibernate complete TrainingHibernate complete Training
Hibernate complete Training
 
02 java spring-hibernate-experience-questions
02 java spring-hibernate-experience-questions02 java spring-hibernate-experience-questions
02 java spring-hibernate-experience-questions
 
Hibernate example1
Hibernate example1Hibernate example1
Hibernate example1
 
Hibernate Interview Questions | Edureka
Hibernate Interview Questions | EdurekaHibernate Interview Questions | Edureka
Hibernate Interview Questions | Edureka
 
Hibernate Framework
Hibernate FrameworkHibernate Framework
Hibernate Framework
 
Hibernate 3
Hibernate 3Hibernate 3
Hibernate 3
 
Introduction to Hibernate
Introduction to HibernateIntroduction to Hibernate
Introduction to Hibernate
 
Java hibernate orm implementation tool
Java hibernate   orm implementation toolJava hibernate   orm implementation tool
Java hibernate orm implementation tool
 
Hibernate tutorial
Hibernate tutorialHibernate tutorial
Hibernate tutorial
 
Hibernate.pdf
Hibernate.pdfHibernate.pdf
Hibernate.pdf
 
Hibernate
HibernateHibernate
Hibernate
 
Hibernate Interview Questions and Answers
Hibernate Interview Questions and AnswersHibernate Interview Questions and Answers
Hibernate Interview Questions and Answers
 
02 Hibernate Introduction
02 Hibernate Introduction02 Hibernate Introduction
02 Hibernate Introduction
 
Learn HIBERNATE at ASIT
Learn HIBERNATE at ASITLearn HIBERNATE at ASIT
Learn HIBERNATE at ASIT
 
What is hibernate?
What is hibernate?What is hibernate?
What is hibernate?
 
Hibernate interview questions
Hibernate interview questionsHibernate interview questions
Hibernate interview questions
 
Hibernate Interview Questions
Hibernate Interview QuestionsHibernate Interview Questions
Hibernate Interview Questions
 
Hibernate reference1
Hibernate reference1Hibernate reference1
Hibernate reference1
 
Hibernate presentation
Hibernate presentationHibernate presentation
Hibernate presentation
 
Hibernate presentation
Hibernate presentationHibernate presentation
Hibernate presentation
 

Más de Santosh Kumar Kar

Operating electrical devices with PIR sensor. No coding, No controller
Operating electrical devices with PIR sensor. No coding, No controllerOperating electrical devices with PIR sensor. No coding, No controller
Operating electrical devices with PIR sensor. No coding, No controllerSantosh Kumar Kar
 
Temperature sensor with raspberry pi
Temperature sensor with raspberry piTemperature sensor with raspberry pi
Temperature sensor with raspberry piSantosh Kumar Kar
 
Pir motion sensor with raspberry pi
Pir motion sensor with raspberry piPir motion sensor with raspberry pi
Pir motion sensor with raspberry piSantosh Kumar Kar
 

Más de Santosh Kumar Kar (7)

Smart home arduino
Smart home   arduinoSmart home   arduino
Smart home arduino
 
Operating electrical devices with PIR sensor. No coding, No controller
Operating electrical devices with PIR sensor. No coding, No controllerOperating electrical devices with PIR sensor. No coding, No controller
Operating electrical devices with PIR sensor. No coding, No controller
 
Temperature sensor with raspberry pi
Temperature sensor with raspberry piTemperature sensor with raspberry pi
Temperature sensor with raspberry pi
 
Pir motion sensor with raspberry pi
Pir motion sensor with raspberry piPir motion sensor with raspberry pi
Pir motion sensor with raspberry pi
 
Angular js for Beginnners
Angular js for BeginnnersAngular js for Beginnners
Angular js for Beginnners
 
Raspberry pi complete setup
Raspberry pi complete setupRaspberry pi complete setup
Raspberry pi complete setup
 
Introduction to spring boot
Introduction to spring bootIntroduction to spring boot
Introduction to spring boot
 

Último

Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfhans926745
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking MenDelhi Call girls
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century educationjfdjdjcjdnsjd
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking MenDelhi Call girls
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024The Digital Insurer
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024The Digital Insurer
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProduct Anonymous
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerThousandEyes
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptxHampshireHUG
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024The Digital Insurer
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationSafe Software
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...Martijn de Jong
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking MenDelhi Call girls
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Servicegiselly40
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processorsdebabhi2
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityPrincipled Technologies
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonAnna Loughnan Colquhoun
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsJoaquim Jorge
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Miguel Araújo
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Drew Madelung
 

Último (20)

Tech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdfTech Trends Report 2024 Future Today Institute.pdf
Tech Trends Report 2024 Future Today Institute.pdf
 
08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men08448380779 Call Girls In Friends Colony Women Seeking Men
08448380779 Call Girls In Friends Colony Women Seeking Men
 
presentation ICT roal in 21st century education
presentation ICT roal in 21st century educationpresentation ICT roal in 21st century education
presentation ICT roal in 21st century education
 
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men08448380779 Call Girls In Greater Kailash - I Women Seeking Men
08448380779 Call Girls In Greater Kailash - I Women Seeking Men
 
Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024Axa Assurance Maroc - Insurer Innovation Award 2024
Axa Assurance Maroc - Insurer Innovation Award 2024
 
Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024Finology Group – Insurtech Innovation Award 2024
Finology Group – Insurtech Innovation Award 2024
 
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemkeProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
ProductAnonymous-April2024-WinProductDiscovery-MelissaKlemke
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
04-2024-HHUG-Sales-and-Marketing-Alignment.pptx
 
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
Bajaj Allianz Life Insurance Company - Insurer Innovation Award 2024
 
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time AutomationFrom Event to Action: Accelerate Your Decision Making with Real-Time Automation
From Event to Action: Accelerate Your Decision Making with Real-Time Automation
 
2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...2024: Domino Containers - The Next Step. News from the Domino Container commu...
2024: Domino Containers - The Next Step. News from the Domino Container commu...
 
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
08448380779 Call Girls In Diplomatic Enclave Women Seeking Men
 
CNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of ServiceCNv6 Instructor Chapter 6 Quality of Service
CNv6 Instructor Chapter 6 Quality of Service
 
Exploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone ProcessorsExploring the Future Potential of AI-Enabled Smartphone Processors
Exploring the Future Potential of AI-Enabled Smartphone Processors
 
Boost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivityBoost PC performance: How more available memory can improve productivity
Boost PC performance: How more available memory can improve productivity
 
Data Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt RobisonData Cloud, More than a CDP by Matt Robison
Data Cloud, More than a CDP by Matt Robison
 
Artificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and MythsArtificial Intelligence: Facts and Myths
Artificial Intelligence: Facts and Myths
 
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
Mastering MySQL Database Architecture: Deep Dive into MySQL Shell and MySQL R...
 
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
Strategies for Unlocking Knowledge Management in Microsoft 365 in the Copilot...
 

Spring & hibernate

  • 2. Course Contents • Who This Tutor Is For • Introduction • Do you recall Hibernate? • Why to Integrate Hibernate with Spring • Integrating Hibernate with Spring • Step 1: Set Hibernate Libraries in classpath • Step 2: Declare a bean in Spring Config file for Hibernate Session Factory • Step 3: Inject session factory into Hibernate template. • Step 4: Inject hibernate template into DAO classes. • Step 5: Define the property HibernateTemplate in each DAO classes • Step 6: Use hibernate Queries through Hibernate Template object in DAO. • HibernateDaoSupport • Using Hibernate 3 contextual sessions • Source code download links
  • 3. Who This Tutor Is For? After going through this session, you will understand the Spring and Hibernate integration. Also you can know how spring provides support to use Hibernate features with Spring framework. You should have basic understanding on Spring Core parts, Spring IOC (dependency injection). If you are new to Spring, I would suggest you to refer my Spring part -1 (Beginning of Spring) before going through this session. As well you must know the Hibernate Architecture and it’s features before going through this tutor. You can also visit my Spring part-2 (Spring and Database) to know how one can use Spring with basic data connection. You can download the source codes of the examples given in this tutor from Download Links available at http://springs-download.blogspot.com/ Good Reading… Author, Santosh
  • 4. Introduction: In Spring part-1, we had the basic understanding on using Spring and the use of DI (Dependency Injection) and in part-2 the Spring and DB connection. In this tutor, Spring part-3, we will see the interaction with Hibernate in Spring. Spring comes with a family of data access frameworks that integrate with a variety of data access technologies. You may use direct JDBC, iBATIS, or an object relational mapping (ORM) framework like Hibernate to persist your data. Spring supports all of these persistence mechanisms.
  • 5. Do you recall Hibernate? Hibernate is an open source project whose purpose is to make it easy to integrate relational data into Java programs. This is done through the use of XML mapping files, which associate Java classes with database tables. Hibernate provides basic mapping capabilities. It also includes several other object/relational mapping (ORM) capabilities, including: • An enhanced, object-based SQL variant for retrieving data, known as Hibernate Query Language (HQL). • Automated processes to synchronize objects with their database equivalents. • Built-in database connection pooling, including three opensource variants. • Transactional capabilities that can work both stand-alone or with existing Java Transaction API (JTA) implementations. The goal of Hibernate is to allow object-oriented developers to incorporate persistence into their programs with a minimum of effort.
  • 6. Why to Integrate Hibernate with Spring Spring Integrates very well with Hibernate. If someone asks why do we need to integrate hibernate in Spring? Yes, there are benefits. • The very first benefit is the Spring framework itself. The IoC container makes configuring data sources, transaction managers, and DAOs easy. • It manages the Hibernate SessionFactory as a singleton – a small but surprisingly annoying task that must be implemented manually when using Hibernate alone. • It offers a transaction system of its own, which is aspectoriented and thus configurable, either through Spring AOP or Java-5 annotations. Either of these are generally much easier than working with Hibernate’s transaction API. • Transaction management becomes nearly invisible for many applications, and where it’s visible, it’s still pretty easy. • You integrate more easily with other standards and frameworks.
  • 7. Integrating Hibernate with Spring A typical Hibernate application uses the Hibernate Libraries, configures its SessionFactory using a properties file or an XML file, use hibernate session etc. Now let’s discuss the steps we must follow while integrating Hibernate with Spring. Step 1: Set Hibernate Libraries in classpath. Step 2: Declare a bean in Spring Config file for Hibernate Session Factory. Step 3: Inject session factory into Hibernate template. Step 4: Inject hibernate template into DAO classes. Step 5: Define the property HibernateTemplate in each DAO classes. Step 6: Use hibernate Queries through Hibernate Template object in DAO. Let’s discuss all these steps one by one.
  • 8. Step 1: Set Hibernate Libraries in classpath To integrate Hibernate with Spring, you need the hibernate libraries along with Spring. So the first step should be downloading all the necessary library jars for Hibernate and set those jars into the project classpath just like you already have set the Spring libraries..
  • 9. Step 2: Declare a bean in Spring Config file for Hibernate Session Factory A typical Hibernate application uses the Hibernate Libraries, configures its SessionFactory using a properties file or an XML file, use hibernate session etc. Now let’s discuss the steps we must follow while integrating Hibernate with Spring. A typical Hibernate application configures its SessionFactory using a properties file or an XML file. First, we start treating that session factory as a Spring bean. • Declare it as a Spring <bean> and instantiate it using a Spring ApplicationContext. • Configure it using Spring <property>s, and this removes the need for a hibernate.cfg.xml or hibernate.properties file. • Spring dependency injection – and possibly autowiring – make short work of this sort of configuration task. • Hibernate object/relational mapping files are included as usual.
  • 10. In our example, we do use 2 .hbm files: Employee.hbm.xml & Department.hbm.xml The databse is MySql and using the driver based datasource in Spring. Remember, here the session factory class used is : LocalSessionFactoryBean. Datasource is injected into SessionFactory All hbm files must be mapped here... Hibernate.dialect -> declare dialect types according to your database. We are not discussing more on different datasource types. You can visit our Spring part-2 section to know more on declaring datasources.
  • 11. Step 3: Inject session factory into Hibernate template. In step 1, we declared the session factory. In step 2 here, we are injecting that session factory into Hibernate Template. The hibernate template class is: org.springframework.orm.hibernate3.HibernateTemplate Step 4: Inject hibernate template into DAO classes. Observe, we have declared the bean MyHibernateTemplate in Step 3. MyHibernateTemplate is now injected into the DAO classes such as org.santosh.dao.EmployeeDao and org.santosh.dao.DepartmentDao.
  • 12. Step 5: Define the property HibernateTemplate in each DAO classes One of the responsibilities of HibernateTemplate is to manage Hibernate Sessions. This involves opening and closing sessions as well as ensuring one session per transaction. Without HibernateTemplate, you’d have no choice but to clutter your DAOs with boilerplate session management code. Import the class org.springframework.orm.hibernate3.HibernateTemplate. The setter method is required as we inject the hibernateTemplate into the DAO class in step 4.
  • 13. Step 6: Use hibernate Queries through Hibernate Template object in DAO. In Hibernate we were using the methods such as session.get(…), session.load(…), session.save(…), session.saveOrUpdate(…), session.delete(…) etc. All such methods are now used using hibernatetemplate. For example we use getHibernateTemplate().get(Employee.class, id) which reattach the Employee object from DB.
  • 14. HibernateDaoSupport So far, the configuration of DAO class (e.g. EmployeeDao or DepartmentDao) involves four beans. • The data source is wired into the session factory bean through LocalSessionFactoryBean • The session factory bean is wired into the HibernateTemplate. • Finally, the HibernateTemplate is wired into DAO (e.g. EmployeeDao or DepartmentDao), where it is used to access the database. To simplify things slightly, Spring offers HibernateDaoSupport, a convenience DAO support class, that enables you to wire a session factory bean directly into the DAO class. Under the covers, HibernateDaoSupport creates a HibernateTemplate that the DAO can use. So the only thing you 1. Extend the class HibernateDaoSupport in each of the DAO class. 2. Remove the property HibernateTemplate as it is already provided in HibernateDaoSupport class. The rest of the code will remain unchanged. Now lets change the EmployeeDao class and implement the HibernateDaoSupport.
  • 15. No changes in the spring configuration XML Extended HibernateDaoSupport Ignore and don’t use this in any of your DAO class because you extends HibernateDaoSupport and so this class had already done this for you. Simply use the methods with getHibernateTemplate() method as you were using session.get(), session.load() etc. in hibernate
  • 16. Using Hibernate 3 contextual sessions As we saw that one of the responsibilities of HibernateTemplate is to manage Hibernate Sessions. This involves opening and closing sessions as well as ensuring one session per transaction. But the HibernateTemplate is coupled to the Spring Framework. So some developers may find such Spring’s intrusion undesirable to use in the DAO class so instead of using the HibernateTemplate in DAO, they prefer to use the HibernateSession in that place. So Hibernate 3 provides the cotextual session where Hibernate manages one session per transaction so there is no need to use the Hibernte template. So use HibernateSession without coupling your DAO class fully with Spring. To implement the contextual session in Hibernate 3, you need to inject sessionFactory in place of HibernateTemplate in Spring configuration file. No hibernateTemplate, uses SessionFactory
  • 17. Writing DAO class Injected SessionFactory (not HibernateTemplate) Uses Hibernate session from SessionFactory
  • 18. End of Part-3 In part – 1 we learned the basics of Spring. And in part-2 we saw how we can work with Databases in Spring, in part-3 we discussed the integration of Hibernate with Spring. In further parts we will see,  Part – 4 : Spring - Managing Database Transactions  Part – 5 : Spring - Security  Part – 6 : Spring AOP  Part – 7 : Spring MVC
  • 19. Source code Download Links You can download at http://springs-download.blogspot.com/ • SpringHibernateTemplate • SpringHibernateDaoSupport • SpringHibernateContextualSession
  • 20. Do you have Questions ? Please write to: santosh.bsil@yahoo.co.in