itech weekend-presentation-hibernate-abhilash

11
Presented by

Upload: abhilash-puttaram

Post on 12-Apr-2017

39 views

Category:

Technology


0 download

TRANSCRIPT

Page 1: Itech weekend-presentation-hibernate-abhilash

Presented by

Page 2: Itech weekend-presentation-hibernate-abhilash

Agenda Agenda Introduction Advantages of Hibernate Framework Hibernate Architecture Elements of hibernate Architecture Hibernate Configuration and Mapping Hibernate Annotations Hibernate Query Language CRUD Operations in Hibernate

2

Page 3: Itech weekend-presentation-hibernate-abhilash

IntroductionIntroduction

3

Open source, lightweight, ORM  tool.

Started in 2001 by Gavin KingAn ORM tool simplifies Crud

operation.

Page 4: Itech weekend-presentation-hibernate-abhilash

Advantages of Hibernate Advantages of Hibernate FrameworkFramework

4

Open source and light weightHibernate has its own query languageData base IndependentFast performanceAutomatic table creationAll exceptions are Un-checked exceptionManaging database ConnectionEazy for pagination

Page 5: Itech weekend-presentation-hibernate-abhilash

Hibernate ArchitectureHibernate Architecture

5

Page 6: Itech weekend-presentation-hibernate-abhilash

Elements of hibernate Elements of hibernate ArchitectureArchitectureConfiguration SessionFactory SessionTransaction

6

Page 7: Itech weekend-presentation-hibernate-abhilash

Hibernate Configuration Hibernate Configuration and Mappingand Mappinghibernate.cfg.xmlhibernate.hbm.xml

7

Page 8: Itech weekend-presentation-hibernate-abhilash

Hibernate AnnotationsHibernate Annotations• @Entity.

• @Table

• @Id

• @Column

8

Page 9: Itech weekend-presentation-hibernate-abhilash

Hibernate Query LanguageHibernate Query Languagedatabase independent

easy to learn for Java Programmer

Query Interface

9

Page 10: Itech weekend-presentation-hibernate-abhilash

CRUD Operations in CRUD Operations in Hibernate Hibernate

10

Page 11: Itech weekend-presentation-hibernate-abhilash

11