SlideShare uma empresa 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

Mais conteúdo relacionado

Mais procurados

Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySqlDhyey Dattani
 
Hibernate architecture
Hibernate architectureHibernate architecture
Hibernate architectureAnurag
 
Spring core module
Spring core moduleSpring core module
Spring core moduleRaj Tomar
 
Hibernate tutorial for beginners
Hibernate tutorial for beginnersHibernate tutorial for beginners
Hibernate tutorial for beginnersRahul Jain
 
Java Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and ExampleJava Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and Examplekamal kotecha
 
Introduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examplesIntroduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examplesecosio GmbH
 
Introduction to Spring Framework
Introduction to Spring FrameworkIntroduction to Spring Framework
Introduction to Spring FrameworkHùng Nguyễn Huy
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!Jakub Kubrynski
 
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
 
Hibernate Tutorial
Hibernate TutorialHibernate Tutorial
Hibernate TutorialRam132
 
Hibernate ppt
Hibernate pptHibernate ppt
Hibernate pptAneega
 
Spring boot introduction
Spring boot introductionSpring boot introduction
Spring boot introductionRasheed Waraich
 

Mais procurados (20)

Java database connectivity with MySql
Java database connectivity with MySqlJava database connectivity with MySql
Java database connectivity with MySql
 
Hibernate architecture
Hibernate architectureHibernate architecture
Hibernate architecture
 
Spring core module
Spring core moduleSpring core module
Spring core module
 
Hibernate tutorial for beginners
Hibernate tutorial for beginnersHibernate tutorial for beginners
Hibernate tutorial for beginners
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Spring Boot
Spring BootSpring Boot
Spring Boot
 
Java Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and ExampleJava Hibernate Programming with Architecture Diagram and Example
Java Hibernate Programming with Architecture Diagram and Example
 
Introduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examplesIntroduction to JPA and Hibernate including examples
Introduction to JPA and Hibernate including examples
 
Spring Core
Spring CoreSpring Core
Spring Core
 
Introduction to Spring Framework
Introduction to Spring FrameworkIntroduction to Spring Framework
Introduction to Spring Framework
 
Spring jdbc
Spring jdbcSpring jdbc
Spring jdbc
 
Introduction to spring boot
Introduction to spring bootIntroduction to spring boot
Introduction to spring boot
 
Introduction to Spring Boot!
Introduction to Spring Boot!Introduction to Spring Boot!
Introduction to Spring Boot!
 
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
 
Hibernate Tutorial
Hibernate TutorialHibernate Tutorial
Hibernate Tutorial
 
JPA For Beginner's
JPA For Beginner'sJPA For Beginner's
JPA For Beginner's
 
Hibernate ppt
Hibernate pptHibernate ppt
Hibernate ppt
 
Spring boot introduction
Spring boot introductionSpring boot introduction
Spring boot introduction
 
Introduction to EJB
Introduction to EJBIntroduction to EJB
Introduction to EJB
 
Spring ppt
Spring pptSpring ppt
Spring ppt
 

Destaque

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!
 

Destaque (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
 

Semelhante 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
 

Semelhante 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
 

Mais 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
 

Mais de Santosh Kumar Kar (6)

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
 

Último

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxMalak Abu Hammad
 
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
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...shyamraj55
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024Rafal Los
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsMaria Levchenko
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxOnBoard
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 3652toLead Limited
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfEnterprise Knowledge
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGSujit Pal
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024BookNet Canada
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreternaman860154
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slidespraypatel2
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...gurkirankumar98700
 
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
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Igalia
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Allon Mureinik
 

Último (20)

The Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptxThe Codex of Business Writing Software for Real-World Solutions 2.pptx
The Codex of Business Writing Software for Real-World Solutions 2.pptx
 
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
 
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
Neo4j - How KGs are shaping the future of Generative AI at AWS Summit London ...
 
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
Automating Business Process via MuleSoft Composer | Bangalore MuleSoft Meetup...
 
The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024The 7 Things I Know About Cyber Security After 25 Years | April 2024
The 7 Things I Know About Cyber Security After 25 Years | April 2024
 
Handwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed textsHandwritten Text Recognition for manuscripts and early printed texts
Handwritten Text Recognition for manuscripts and early printed texts
 
Maximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptxMaximizing Board Effectiveness 2024 Webinar.pptx
Maximizing Board Effectiveness 2024 Webinar.pptx
 
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
Tech-Forward - Achieving Business Readiness For Copilot in Microsoft 365
 
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdfThe Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
The Role of Taxonomy and Ontology in Semantic Layers - Heather Hedden.pdf
 
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
 
Google AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAGGoogle AI Hackathon: LLM based Evaluator for RAG
Google AI Hackathon: LLM based Evaluator for RAG
 
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
Transcript: #StandardsGoals for 2024: What’s new for BISAC - Tech Forum 2024
 
Presentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreterPresentation on how to chat with PDF using ChatGPT code interpreter
Presentation on how to chat with PDF using ChatGPT code interpreter
 
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
 
Slack Application Development 101 Slides
Slack Application Development 101 SlidesSlack Application Development 101 Slides
Slack Application Development 101 Slides
 
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
Kalyanpur ) Call Girls in Lucknow Finest Escorts Service 🍸 8923113531 🎰 Avail...
 
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
 
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
 
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
Raspberry Pi 5: Challenges and Solutions in Bringing up an OpenGL/Vulkan Driv...
 
Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)Injustice - Developers Among Us (SciFiDevCon 2024)
Injustice - Developers Among Us (SciFiDevCon 2024)
 

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