SlideShare a Scribd company logo
INTRODUCTION TO HIBERNATE
http://raj-hibernate.blogspot.in/
What is hibernate?
• Is one of the most efficient ORM
implementations in Java
http://raj-hibernate.blogspot.in/
What is ORM?
• is Object Relation Mapping (ORM)
• IS A system that maps the object to Relational
model.
• ORM is not only relation to java only, it also
there in cpp, c#
http://raj-hibernate.blogspot.in/
Understanding why ORM?
• We understand most of the enterprise
applications these days are created using oop
LANGUAGES
• That is , OOP Systems(OOP’s)
• In this condition we know that the activities are
distributed into multiple components.
• This introduces a requirement to describe the
business data between these components (with
in the OOP System)
• To meet this requirement we create a DOM
(Domain Object Model)
http://raj-hibernate.blogspot.in/
What is Domain Object Model(DOM)?
• DOM is a object Model designed to describe
the business domain data between the
components in OOP System.
• Now we also understand most of this business
data is need to be persisted.
http://raj-hibernate.blogspot.in/
What is Persistence data?
• Persistence Data is the data that can be outlive the process in which it is created.
• One of the most common way of persisting the data is using RDBMS (i.e: Relational
Data stores)
• In a relational Data Store we find to create the relational model describing the
business data.
• In this situation(context), that is we have a complex Object model (DOM) in the
OOP System (Enterprise Applications) and relational Model in the backend
datastore to describe the business data in the respective environments.
• Both of them are best in there environments.
• In this case we find some problems because of mismatch between these models as
they are created using different concepts that is, OOP and relational.
• It is also identified that these problems are common in enterprise applications.
• Thus we got some vendors finding interest to provide a readymade solution
implementing the logic to bridge between the object and relational model.
• Such systems are referred as ORM’s and Hibernate is one among them.
http://raj-hibernate.blogspot.in/
http://raj-hibernate.blogspot.in/
The definition of ORM, Diagrammatic Representation
http://raj-hibernate.blogspot.in/
The following are the mismatch problems found in
mapping the object and relational models:
1. Problem of identity
2. Problem of Relationships
3. Problem of subtypes
4. Problem of Granularity
5. Problem of Object Tree Navigation
http://raj-hibernate.blogspot.in/
Features of Hibernate
• Hibernate supports Plain Java objects as persistence objects
• Supports simple XML and annotation style of configuring
the system
• Hibernate supports the two level cache (one at session and
other between the sessions) .This can reduce the
interactions with the database server and thus improve the
performance.
• Hibernate supports object oriented Query Language (HQL)
for querying the objects
• Hibernate supports integrating with the JDBC and JTA
Transactions
• Hibernate includes a Criterion API which facilitates creating
the dynamic queries
http://raj-hibernate.blogspot.in/
Understanding the top level elements of Hibernate
Architecture
Configuration:
• This object of Hibernate system is responsible for loading the configurations into the memory
(hibernate system)
SessionFactory:
• This is responsible to initialize the Hibernate System to service the client (i.e: our java Application)
• This performs all the time taken costlier on-time initializations includes understanding the
configurations and setting up the environment like creating the connection pool, starting the 2nd
level cache and creating the proxy classes
Session:
• This is the core (central part) object of the Hibernate system which is used to access the CRUD
operations
• That means we use the methods of session object to create or read or update or delete the objects
• Session object is created by SessionFactory, it also works with JDBC.
• SESSION is just like a front office execute in the office
Transaction:
• This provides a standard abstraction for accessing the JDBC or JTA Transaction Service
• We know that Hibernate includes support to integrate with JTA
http://raj-hibernate.blogspot.in/
TOP LEVEL ARCHITECTURE HIBERNATE
http://raj-hibernate.blogspot.in/
With this information we now want to
move creating a start up example.
• Hibernate start up Examle:
• The following files are required for this example:
• Employee.java
• Is a persistence class
• Will demonstrate the rules in creating the hibernate persistence class
• Employee.hbm.xml
• Is a hibernate mapping XML document
• Demonstrates how define the mappings using XML style
• hibernate.cfg.xml
• is a hibernate configuration XML File
• HibernateTestCase.java
• Demonstrates implementing the steps involved in accessing the
persistence objects using Hibernate API
http://raj-hibernate.blogspot.in/
What is Hibernate Persistence class?
• Ans:
• It is a java class that is understood by the
Hibernate system to manage its instances.
http://raj-hibernate.blogspot.in/
A java class should satisfy the following rules to become a Hibernate
Persistence class
• Should be a public Non-abstract class
• Should have a no-arg constructor: This is because of the following two reasons:
• Hibernate is programmed to create an instance of the persistence class using no-arg constructor.
• For implementing the lazy loading Hibernate may need to create a dynamic proxy class sub type of
the persistence class, for which no-argument constructor is mandatory
• Should have a java Bean style setter and getter methods for every persistence property.
• <access_specifier> <non_void>
• get<property_name_with_first_char_upper_case>()
• <access_specifier>void
• set<property_name_with_first_char_upper_case>(<one_argument>)
• In addition to these rules; it is recommended to follow the below rules also:
• Make the class and the persistence property getter-setter methods to non-final.
• If not followed may need to compromise with lazy loading (as hibernate could not implement it)
• Implement the hashCode() and equals() methods.
http://raj-hibernate.blogspot.in/
Note:
• We can use the term entity to refer the
persistence class
• Lets create the Employee.java following there
rules:
http://raj-hibernate.blogspot.in/
• package com.st.dom;
•
• public class Employee {
• private int empno, deptno;
• private String name;
• private double sal;
• //we should have no arg constructor
• public Employee(){}
• public Employee(int empno, String name, double sal, int deptno)
• {
• this.empno=empno;
• this.name=name;
• this.sal=sal;
• this.deptno=deptno;
• }
• public int getEmpno()
• {
• return empno;
•
• }
• private void setEmpno(int eno)
• {
• empno=eno;
• }
• public String getName()
• {
• return name;
• }
•
http://raj-hibernate.blogspot.in/
• public void setName(String s)
• {
• name=s;
• }
• public double getSal()
• {
• return sal;
• }
• private void setSal(double s)
• {
• sal=s;
• }
• public int getDeptNo()
• {
• return deptno;
• }
• private void setDeptNo(int d)
• {
• deptno=d;
• }
• }
http://raj-hibernate.blogspot.in/
• Now we have implemented the persistence
class, we need to describe the mapping for
this object to the Hibernate.
• To do this we have two approaches:
• Creating Hibernate Mapping XML
• Using Annotations
• For this example we prefer with Hibernate
Mapping XML (hbm XML)
http://raj-hibernate.blogspot.in/
<?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping>
<class name="com.st.dom.Employee" table="st_emp">
<id name="empno">
<gen<!-- Employee.hbm.xml
Note: the file name need not match with the persistence class name.
However it is recomended to do such for easy maintanance. Also the extension need not be .hbm.xml but
is recommended to be recognized by many tools (includes IDE)
WHICH CAN INCREASE THE CONVINIENCE OF DEVELOPMENT AND MAINTANANCE -->
<!DOCTYPE-->
<!-- Copy this DOCTYPE from any existing hibernate mapping XML or DTD file -->
<?xml version="1.0" encoding="UTF-8"?>
<hibernate-mapping>
<class name="com.st.dom.Employee" table="st_emp">
<id name="empno">
<generator class="assigned"/>
</id>
<property name="name" column="ename"/>
<property name="sal"/>
<property name="deptno"/>
</class>
</hibernate-mapping>
erator class="assigned"/>
</id>
<property name="name" column="ename"/>
<property name="sal"/>
<property name="deptno"/>
</class>
</hibernate-mapping>
http://raj-hibernate.blogspot.in/
Fig: HIBERNATE_MAPPING.JPG
http://raj-hibernate.blogspot.in/
The hibernate.cfg.xml:
• Now we are telling explained the hibernate mapping between the entity class and table, we want to describe the hibernate about the database it
needs to access (i.e we are informing the address of DB Server)
• To do this we create hibernate.cfg.xml
<!-- hibernate.cfg.xml -->
<!-- DOCTYPE -->
<!-- COPY THE DOCTYPE FROM any existing hibernate cfg xml or dtd -->
<hibernate-configuration>
<session-factory>
<property>
name="connection.driver_class">
oracle.jdbc.driver.OracleDriver
</property>
<property name="connection.url">
jdbc:oracle:thin:@localhost:1521:XE
</property>
<property>
<property name="connection.username">
system</property>
<property name="connection.password">
manager</property>
<property name="dialect">
org.hibernate.dialect.Oracle9Dialect</property>
<mapping resource="Employee.hbm.xml"/>
</property>
</session-factory>
</hibernate-configuration>
http://raj-hibernate.blogspot.in/
The Hibernate Test Case:
• Because of the first example, lets only use
Hibernate for reading the object
http://raj-hibernate.blogspot.in/
The following steps are involved in working with
Hibernate API
• Step 1. Create the configuration
• Step2: Build the sessionFactory
• Step3: Get the Session
• Step 4: Access the CRUD operations
• Step 5: close the session
http://raj-hibernate.blogspot.in/
HibernateTestCase.java
• //HibernateTestCase.java
• import com.st.dom.Employee;
• import org.hibernate.cfg.*;
• import org.hibernate.*;
• public class HibernateTestCase
• {
• public static void main(String args[])
• {
• // Step 1. Create the configuration
• Configuration cfg=new Configuration();
• cfg.configure();
• //Step2: Build the sessionFactory
• SessionFactory sf=cfg.buildSessionFactory();
• //Step3: Get the Session
• Session session=sf.openSession();
http://raj-hibernate.blogspot.in/
• //Step 4: Access the CRUD operations
• //to read the object
• Employee
emp=(Employee)session.load(Employee.class,101);
• /* 101 is the empno(i.e id) this will query the Employee object with
the identifier (empno) value 101*/
• //to test
• System.out.println("Name :"+emp.getName());
• System.out.println("Salary :"+emp.getSal());
• System.out.println("Deptno "+emp.getDeptNo());
• // Step 5: close the session
• session.close();
• }//main()
•
• }//class
http://raj-hibernate.blogspot.in/
To compile and run this program:
• To compile and run this program:
• * we want to have the following installations /jars
• * (1) JDK
• * (2) Oracle DB (otherwise any other DB Server)
• * (3) Hibernate ORM downloads
• * we can download this from following site:
• * www.hibernate.org
• * We get a simple zip file to download, Extract it you will find all the necessary jar files.
• *
• Do the following to successfully Run this example:
• 1. copy the DOCTYPE into the XML documents (hibertate3.jarorghibernate-zip archieve)
• we can find DTD files in the hibernate3.jar file
• ->open the jar file with winzip or winrar
• ->coy the doctype from hibernate-configuration-3.0.dtd file into the hibernate.cfg.xml
• ->copy the doctype from hibernate-mapping-3.0.dtd file into the Employee.hbm.xml
• 2. set the following jar files into classpath:
• -hibernate3.jar
• -antlr-2.7.6.jar
• -commons-collections-3.1.jar
• -dom4j-1.6.1.jar
• -javassist-3.12.0.GA.jar
• -jta-1.1.jar
• -hibernate-jpa-2.0-api-1.0.1.Final.jar
• -ojdbc14.jar
• (to set the class path better to do batch file and you can execute when u want)
http://raj-hibernate.blogspot.in/
To compile and run this program:
• 3. create the following table and record in the database
server:
• create table st_emp(
• empno number primary-key,
• ename varchar2(20),
• sal number(10,2),
• deptno number);
•
• insert into st_emp values(101,'e101',10000,10);
• commit;
• 4. compile java files and Run
•
http://raj-hibernate.blogspot.in/
• >javac -d . *.java
• >classpath.bat //this executes the set the
class path
• >java HibernateTestCase
http://raj-hibernate.blogspot.in/

More Related Content

What's hot (20)

PPTX
Interface callable statement
myrajendra
 
PPTX
Java- JDBC- Mazenet Solution
Mazenetsolution
 
PPTX
Java Database Connectivity (JDBC)
Pooja Talreja
 
PPS
Jdbc architecture and driver types ppt
kamal kotecha
 
PPT
JDBC,Types of JDBC,Resultset, statements,PreparedStatement,CallableStatements...
Pallepati Vasavi
 
PPT
Jdbc complete
Sandeep Rawat
 
PPTX
Jdbc in servlets
Nuha Noor
 
PPTX
Jdbc_ravi_2016
Ravinder Singh Karki
 
PPT
Chap3 3 12
Hemo Chella
 
PDF
Overview Of JDBC
Mindfire Solutions
 
DOC
jdbc document
Yamuna Devi
 
PPT
Java database connectivity
Vaishali Modi
 
PPSX
JDBC: java DataBase connectivity
Tanmoy Barman
 
PPTX
java Jdbc
Ankit Desai
 
PPTX
Core jdbc basics
Sourabrata Mukherjee
 
PPT
Jdbc (database in java)
Maher Abdo
 
PPT
Jdbc
Smit Patel
 
PPT
JDBC
Ankit Desai
 
Interface callable statement
myrajendra
 
Java- JDBC- Mazenet Solution
Mazenetsolution
 
Java Database Connectivity (JDBC)
Pooja Talreja
 
Jdbc architecture and driver types ppt
kamal kotecha
 
JDBC,Types of JDBC,Resultset, statements,PreparedStatement,CallableStatements...
Pallepati Vasavi
 
Jdbc complete
Sandeep Rawat
 
Jdbc in servlets
Nuha Noor
 
Jdbc_ravi_2016
Ravinder Singh Karki
 
Chap3 3 12
Hemo Chella
 
Overview Of JDBC
Mindfire Solutions
 
jdbc document
Yamuna Devi
 
Java database connectivity
Vaishali Modi
 
JDBC: java DataBase connectivity
Tanmoy Barman
 
java Jdbc
Ankit Desai
 
Core jdbc basics
Sourabrata Mukherjee
 
Jdbc (database in java)
Maher Abdo
 

Viewers also liked (20)

PPTX
Jdbc workflow
myrajendra
 
PPT
String classes and its methods.20
myrajendra
 
PPT
Strings In OOP(Object oriented programming)
Danial Virk
 
PPTX
Properties
myrajendra
 
PPT
Starting jdbc
myrajendra
 
PPT
Types of memory
myrajendra
 
PPT
Types of memory 10 to11
myrajendra
 
PPT
Data type
myrajendra
 
PPT
38 paged segmentation
myrajendra
 
PPT
Fundamentals
myrajendra
 
PPTX
File management53(1)
myrajendra
 
PPT
35. multiplepartitionallocation
myrajendra
 
PPT
36 fragmentaio nnd pageconcepts
myrajendra
 
PPT
40 demand paging
myrajendra
 
PPT
Thrashing allocation frames.43
myrajendra
 
PPT
39 virtual memory
myrajendra
 
PPT
37 segmentation
myrajendra
 
PPTX
Segmentation in Operating Systems.
Muhammad SiRaj Munir
 
PPT
04 cache memory
Inshad Arshad
 
PPTX
Paging and segmentation
Piyush Rochwani
 
Jdbc workflow
myrajendra
 
String classes and its methods.20
myrajendra
 
Strings In OOP(Object oriented programming)
Danial Virk
 
Properties
myrajendra
 
Starting jdbc
myrajendra
 
Types of memory
myrajendra
 
Types of memory 10 to11
myrajendra
 
Data type
myrajendra
 
38 paged segmentation
myrajendra
 
Fundamentals
myrajendra
 
File management53(1)
myrajendra
 
35. multiplepartitionallocation
myrajendra
 
36 fragmentaio nnd pageconcepts
myrajendra
 
40 demand paging
myrajendra
 
Thrashing allocation frames.43
myrajendra
 
39 virtual memory
myrajendra
 
37 segmentation
myrajendra
 
Segmentation in Operating Systems.
Muhammad SiRaj Munir
 
04 cache memory
Inshad Arshad
 
Paging and segmentation
Piyush Rochwani
 
Ad

Similar to Hibernate example1 (20)

PPT
Hibernate
Shaharyar khan
 
PPTX
Hibernate ppt
Aneega
 
PPTX
Hibernate tutorial
Mumbai Academisc
 
PPTX
Hibernate
Prashant Kalkar
 
PPT
Basic Hibernate Final
Rafael Coutinho
 
PDF
Hibernate using jpa
Mohammad Faizan
 
PPTX
Hibernate online training
QUONTRASOLUTIONS
 
PPTX
New-Hibernate-introduction cloud cc.pptx
bgvthm
 
PPT
Patni Hibernate
patinijava
 
PPTX
Module-3 for career and JFSD ppt for study.pptx
ViratKohli78
 
PPT
Hibernate Tutorial
Ram132
 
PPTX
Hibernate Training Session1
Asad Khan
 
PPTX
Hibernate in Nutshell
Onkar Deshpande
 
PPT
Learn HIBERNATE at ASIT
ASIT
 
PPT
Hibernate
Preetha Ganapathi
 
PDF
inf5750---lecture-2.-c---hibernate-intro.pdf
bhqckkgwglxjcuctdf
 
PPT
Hibernate
Murali Pachiyappan
 
PDF
Hibernate 3
Rajiv Gupta
 
PPTX
Introduction to Hibernate Framework
Raveendra R
 
PPTX
Introduction to Hibernate Framework
Collaboration Technologies
 
Hibernate
Shaharyar khan
 
Hibernate ppt
Aneega
 
Hibernate tutorial
Mumbai Academisc
 
Hibernate
Prashant Kalkar
 
Basic Hibernate Final
Rafael Coutinho
 
Hibernate using jpa
Mohammad Faizan
 
Hibernate online training
QUONTRASOLUTIONS
 
New-Hibernate-introduction cloud cc.pptx
bgvthm
 
Patni Hibernate
patinijava
 
Module-3 for career and JFSD ppt for study.pptx
ViratKohli78
 
Hibernate Tutorial
Ram132
 
Hibernate Training Session1
Asad Khan
 
Hibernate in Nutshell
Onkar Deshpande
 
Learn HIBERNATE at ASIT
ASIT
 
inf5750---lecture-2.-c---hibernate-intro.pdf
bhqckkgwglxjcuctdf
 
Hibernate 3
Rajiv Gupta
 
Introduction to Hibernate Framework
Raveendra R
 
Introduction to Hibernate Framework
Collaboration Technologies
 
Ad

More from myrajendra (18)

PPTX
Sessionex1
myrajendra
 
PPTX
Internal
myrajendra
 
PPTX
3. elements
myrajendra
 
PPTX
2. attributes
myrajendra
 
PPTX
1 introduction to html
myrajendra
 
PPTX
Headings
myrajendra
 
PPTX
Forms
myrajendra
 
PPTX
Views
myrajendra
 
PPTX
Views
myrajendra
 
PPTX
Views
myrajendra
 
PPTX
Interface result set
myrajendra
 
PPTX
Interface database metadata
myrajendra
 
PPTX
Interface connection
myrajendra
 
PPTX
Indexing
myrajendra
 
PPTX
Get excelsheet
myrajendra
 
PPTX
Get data
myrajendra
 
PPTX
Exceptions
myrajendra
 
PPTX
Driver
myrajendra
 
Sessionex1
myrajendra
 
Internal
myrajendra
 
3. elements
myrajendra
 
2. attributes
myrajendra
 
1 introduction to html
myrajendra
 
Headings
myrajendra
 
Forms
myrajendra
 
Views
myrajendra
 
Views
myrajendra
 
Views
myrajendra
 
Interface result set
myrajendra
 
Interface database metadata
myrajendra
 
Interface connection
myrajendra
 
Indexing
myrajendra
 
Get excelsheet
myrajendra
 
Get data
myrajendra
 
Exceptions
myrajendra
 
Driver
myrajendra
 

Recently uploaded (20)

PPTX
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
PPT
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
PDF
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
PDF
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
PDF
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
PDF
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
PPTX
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
PDF
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
PDF
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
PPTX
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
PPTX
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
PPTX
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
PPTX
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
PPTX
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
PPTX
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
PDF
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
PDF
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
PPTX
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
PPTX
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
PPTX
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 
How to Create a PDF Report in Odoo 18 - Odoo Slides
Celine George
 
Talk on Critical Theory, Part II, Philosophy of Social Sciences
Soraj Hongladarom
 
DIGESTION OF CARBOHYDRATES,PROTEINS,LIPIDS
raviralanaresh2
 
Reconstruct, Restore, Reimagine: New Perspectives on Stoke Newington’s Histor...
History of Stoke Newington
 
SSHS-2025-PKLP_Quarter-1-Dr.-Kerby-Alvarez.pdf
AishahSangcopan1
 
ARAL_Orientation_Day-2-Sessions_ARAL-Readung ARAL-Mathematics ARAL-Sciencev2.pdf
JoelVilloso1
 
grade 5 lesson matatag ENGLISH 5_Q1_PPT_WEEK4.pptx
SireQuinn
 
Lesson 2 - WATER,pH, BUFFERS, AND ACID-BASE.pdf
marvinnbustamante1
 
Biological Bilingual Glossary Hindi and English Medium
World of Wisdom
 
Growth and development and milestones, factors
BHUVANESHWARI BADIGER
 
I AM MALALA The Girl Who Stood Up for Education and was Shot by the Taliban...
Beena E S
 
Soil and agriculture microbiology .pptx
Keerthana Ramesh
 
A PPT on Alfred Lord Tennyson's Ulysses.
Beena E S
 
How to Convert an Opportunity into a Quotation in Odoo 18 CRM
Celine George
 
HYDROCEPHALUS: NURSING MANAGEMENT .pptx
PRADEEP ABOTHU
 
Women's Health: Essential Tips for Every Stage.pdf
Iftikhar Ahmed
 
The History of Phone Numbers in Stoke Newington by Billy Thomas
History of Stoke Newington
 
2025 Winter SWAYAM NPTEL & A Student.pptx
Utsav Yagnik
 
ASRB NET 2023 PREVIOUS YEAR QUESTION PAPER GENETICS AND PLANT BREEDING BY SAT...
Krashi Coaching
 
STAFF DEVELOPMENT AND WELFARE: MANAGEMENT
PRADEEP ABOTHU
 

Hibernate example1

  • 2. What is hibernate? • Is one of the most efficient ORM implementations in Java http://raj-hibernate.blogspot.in/
  • 3. What is ORM? • is Object Relation Mapping (ORM) • IS A system that maps the object to Relational model. • ORM is not only relation to java only, it also there in cpp, c# http://raj-hibernate.blogspot.in/
  • 4. Understanding why ORM? • We understand most of the enterprise applications these days are created using oop LANGUAGES • That is , OOP Systems(OOP’s) • In this condition we know that the activities are distributed into multiple components. • This introduces a requirement to describe the business data between these components (with in the OOP System) • To meet this requirement we create a DOM (Domain Object Model) http://raj-hibernate.blogspot.in/
  • 5. What is Domain Object Model(DOM)? • DOM is a object Model designed to describe the business domain data between the components in OOP System. • Now we also understand most of this business data is need to be persisted. http://raj-hibernate.blogspot.in/
  • 6. What is Persistence data? • Persistence Data is the data that can be outlive the process in which it is created. • One of the most common way of persisting the data is using RDBMS (i.e: Relational Data stores) • In a relational Data Store we find to create the relational model describing the business data. • In this situation(context), that is we have a complex Object model (DOM) in the OOP System (Enterprise Applications) and relational Model in the backend datastore to describe the business data in the respective environments. • Both of them are best in there environments. • In this case we find some problems because of mismatch between these models as they are created using different concepts that is, OOP and relational. • It is also identified that these problems are common in enterprise applications. • Thus we got some vendors finding interest to provide a readymade solution implementing the logic to bridge between the object and relational model. • Such systems are referred as ORM’s and Hibernate is one among them. http://raj-hibernate.blogspot.in/
  • 8. The definition of ORM, Diagrammatic Representation http://raj-hibernate.blogspot.in/
  • 9. The following are the mismatch problems found in mapping the object and relational models: 1. Problem of identity 2. Problem of Relationships 3. Problem of subtypes 4. Problem of Granularity 5. Problem of Object Tree Navigation http://raj-hibernate.blogspot.in/
  • 10. Features of Hibernate • Hibernate supports Plain Java objects as persistence objects • Supports simple XML and annotation style of configuring the system • Hibernate supports the two level cache (one at session and other between the sessions) .This can reduce the interactions with the database server and thus improve the performance. • Hibernate supports object oriented Query Language (HQL) for querying the objects • Hibernate supports integrating with the JDBC and JTA Transactions • Hibernate includes a Criterion API which facilitates creating the dynamic queries http://raj-hibernate.blogspot.in/
  • 11. Understanding the top level elements of Hibernate Architecture Configuration: • This object of Hibernate system is responsible for loading the configurations into the memory (hibernate system) SessionFactory: • This is responsible to initialize the Hibernate System to service the client (i.e: our java Application) • This performs all the time taken costlier on-time initializations includes understanding the configurations and setting up the environment like creating the connection pool, starting the 2nd level cache and creating the proxy classes Session: • This is the core (central part) object of the Hibernate system which is used to access the CRUD operations • That means we use the methods of session object to create or read or update or delete the objects • Session object is created by SessionFactory, it also works with JDBC. • SESSION is just like a front office execute in the office Transaction: • This provides a standard abstraction for accessing the JDBC or JTA Transaction Service • We know that Hibernate includes support to integrate with JTA http://raj-hibernate.blogspot.in/
  • 12. TOP LEVEL ARCHITECTURE HIBERNATE http://raj-hibernate.blogspot.in/
  • 13. With this information we now want to move creating a start up example. • Hibernate start up Examle: • The following files are required for this example: • Employee.java • Is a persistence class • Will demonstrate the rules in creating the hibernate persistence class • Employee.hbm.xml • Is a hibernate mapping XML document • Demonstrates how define the mappings using XML style • hibernate.cfg.xml • is a hibernate configuration XML File • HibernateTestCase.java • Demonstrates implementing the steps involved in accessing the persistence objects using Hibernate API http://raj-hibernate.blogspot.in/
  • 14. What is Hibernate Persistence class? • Ans: • It is a java class that is understood by the Hibernate system to manage its instances. http://raj-hibernate.blogspot.in/
  • 15. A java class should satisfy the following rules to become a Hibernate Persistence class • Should be a public Non-abstract class • Should have a no-arg constructor: This is because of the following two reasons: • Hibernate is programmed to create an instance of the persistence class using no-arg constructor. • For implementing the lazy loading Hibernate may need to create a dynamic proxy class sub type of the persistence class, for which no-argument constructor is mandatory • Should have a java Bean style setter and getter methods for every persistence property. • <access_specifier> <non_void> • get<property_name_with_first_char_upper_case>() • <access_specifier>void • set<property_name_with_first_char_upper_case>(<one_argument>) • In addition to these rules; it is recommended to follow the below rules also: • Make the class and the persistence property getter-setter methods to non-final. • If not followed may need to compromise with lazy loading (as hibernate could not implement it) • Implement the hashCode() and equals() methods. http://raj-hibernate.blogspot.in/
  • 16. Note: • We can use the term entity to refer the persistence class • Lets create the Employee.java following there rules: http://raj-hibernate.blogspot.in/
  • 17. • package com.st.dom; • • public class Employee { • private int empno, deptno; • private String name; • private double sal; • //we should have no arg constructor • public Employee(){} • public Employee(int empno, String name, double sal, int deptno) • { • this.empno=empno; • this.name=name; • this.sal=sal; • this.deptno=deptno; • } • public int getEmpno() • { • return empno; • • } • private void setEmpno(int eno) • { • empno=eno; • } • public String getName() • { • return name; • } • http://raj-hibernate.blogspot.in/
  • 18. • public void setName(String s) • { • name=s; • } • public double getSal() • { • return sal; • } • private void setSal(double s) • { • sal=s; • } • public int getDeptNo() • { • return deptno; • } • private void setDeptNo(int d) • { • deptno=d; • } • } http://raj-hibernate.blogspot.in/
  • 19. • Now we have implemented the persistence class, we need to describe the mapping for this object to the Hibernate. • To do this we have two approaches: • Creating Hibernate Mapping XML • Using Annotations • For this example we prefer with Hibernate Mapping XML (hbm XML) http://raj-hibernate.blogspot.in/
  • 20. <?xml version="1.0" encoding="UTF-8"?> <hibernate-mapping> <class name="com.st.dom.Employee" table="st_emp"> <id name="empno"> <gen<!-- Employee.hbm.xml Note: the file name need not match with the persistence class name. However it is recomended to do such for easy maintanance. Also the extension need not be .hbm.xml but is recommended to be recognized by many tools (includes IDE) WHICH CAN INCREASE THE CONVINIENCE OF DEVELOPMENT AND MAINTANANCE --> <!DOCTYPE--> <!-- Copy this DOCTYPE from any existing hibernate mapping XML or DTD file --> <?xml version="1.0" encoding="UTF-8"?> <hibernate-mapping> <class name="com.st.dom.Employee" table="st_emp"> <id name="empno"> <generator class="assigned"/> </id> <property name="name" column="ename"/> <property name="sal"/> <property name="deptno"/> </class> </hibernate-mapping> erator class="assigned"/> </id> <property name="name" column="ename"/> <property name="sal"/> <property name="deptno"/> </class> </hibernate-mapping> http://raj-hibernate.blogspot.in/
  • 22. The hibernate.cfg.xml: • Now we are telling explained the hibernate mapping between the entity class and table, we want to describe the hibernate about the database it needs to access (i.e we are informing the address of DB Server) • To do this we create hibernate.cfg.xml <!-- hibernate.cfg.xml --> <!-- DOCTYPE --> <!-- COPY THE DOCTYPE FROM any existing hibernate cfg xml or dtd --> <hibernate-configuration> <session-factory> <property> name="connection.driver_class"> oracle.jdbc.driver.OracleDriver </property> <property name="connection.url"> jdbc:oracle:thin:@localhost:1521:XE </property> <property> <property name="connection.username"> system</property> <property name="connection.password"> manager</property> <property name="dialect"> org.hibernate.dialect.Oracle9Dialect</property> <mapping resource="Employee.hbm.xml"/> </property> </session-factory> </hibernate-configuration> http://raj-hibernate.blogspot.in/
  • 23. The Hibernate Test Case: • Because of the first example, lets only use Hibernate for reading the object http://raj-hibernate.blogspot.in/
  • 24. The following steps are involved in working with Hibernate API • Step 1. Create the configuration • Step2: Build the sessionFactory • Step3: Get the Session • Step 4: Access the CRUD operations • Step 5: close the session http://raj-hibernate.blogspot.in/
  • 25. HibernateTestCase.java • //HibernateTestCase.java • import com.st.dom.Employee; • import org.hibernate.cfg.*; • import org.hibernate.*; • public class HibernateTestCase • { • public static void main(String args[]) • { • // Step 1. Create the configuration • Configuration cfg=new Configuration(); • cfg.configure(); • //Step2: Build the sessionFactory • SessionFactory sf=cfg.buildSessionFactory(); • //Step3: Get the Session • Session session=sf.openSession(); http://raj-hibernate.blogspot.in/
  • 26. • //Step 4: Access the CRUD operations • //to read the object • Employee emp=(Employee)session.load(Employee.class,101); • /* 101 is the empno(i.e id) this will query the Employee object with the identifier (empno) value 101*/ • //to test • System.out.println("Name :"+emp.getName()); • System.out.println("Salary :"+emp.getSal()); • System.out.println("Deptno "+emp.getDeptNo()); • // Step 5: close the session • session.close(); • }//main() • • }//class http://raj-hibernate.blogspot.in/
  • 27. To compile and run this program: • To compile and run this program: • * we want to have the following installations /jars • * (1) JDK • * (2) Oracle DB (otherwise any other DB Server) • * (3) Hibernate ORM downloads • * we can download this from following site: • * www.hibernate.org • * We get a simple zip file to download, Extract it you will find all the necessary jar files. • * • Do the following to successfully Run this example: • 1. copy the DOCTYPE into the XML documents (hibertate3.jarorghibernate-zip archieve) • we can find DTD files in the hibernate3.jar file • ->open the jar file with winzip or winrar • ->coy the doctype from hibernate-configuration-3.0.dtd file into the hibernate.cfg.xml • ->copy the doctype from hibernate-mapping-3.0.dtd file into the Employee.hbm.xml • 2. set the following jar files into classpath: • -hibernate3.jar • -antlr-2.7.6.jar • -commons-collections-3.1.jar • -dom4j-1.6.1.jar • -javassist-3.12.0.GA.jar • -jta-1.1.jar • -hibernate-jpa-2.0-api-1.0.1.Final.jar • -ojdbc14.jar • (to set the class path better to do batch file and you can execute when u want) http://raj-hibernate.blogspot.in/
  • 28. To compile and run this program: • 3. create the following table and record in the database server: • create table st_emp( • empno number primary-key, • ename varchar2(20), • sal number(10,2), • deptno number); • • insert into st_emp values(101,'e101',10000,10); • commit; • 4. compile java files and Run • http://raj-hibernate.blogspot.in/
  • 29. • >javac -d . *.java • >classpath.bat //this executes the set the class path • >java HibernateTestCase http://raj-hibernate.blogspot.in/

Editor's Notes

  • #9: Fig: Hibernate2.JPG