Hibernate TutorialThis hibernate tutorial provides in-depth concepts of Hibernate Framework with simplified examples. It was started in 2001 by Gavin King as an alternative to EJB2 style entity bean. Hibernate FrameworkHibernate is a Java framework that simplifies the development of Java application to interact with the database. It is an open source, lightweight, ORM (Object Relational Mapping) tool. Hibernate implements the specifications of JPA (Java Persistence API) for data persistence. ORM ToolAn ORM tool simplifies the data creation, data manipulation and data access. It is a programming technique that maps the object to the data stored in the database. The ORM tool internally uses the JDBC API to interact with the database. What is JPA?Java Persistence API (JPA) is a Java specification that provides certain functionality and standard to ORM tools. The javax.persistence package contains the JPA classes and interfaces. Advantages of Hibernate FrameworkFollowing are the advantages of hibernate framework: 1) Open Source and LightweightHibernate framework is open source under the LGPL license and lightweight. 2) Fast PerformanceThe performance of hibernate framework is fast because cache is internally used in hibernate framework. There are two types of cache in hibernate framework first level cache and second level cache. First level cache is enabled by default. 3) Database Independent QueryHQL (Hibernate Query Language) is the object-oriented version of SQL. It generates the database independent queries. So you don't need to write database specific queries. Before Hibernate, if database is changed for the project, we need to change the SQL query as well that leads to the maintenance problem. 4) Automatic Table CreationHibernate framework provides the facility to create the tables of the database automatically. So there is no need to create tables in the database manually. 5) Simplifies Complex JoinFetching data from multiple tables is easy in hibernate framework. 6) Provides Query Statistics and Database StatusHibernate supports Query cache and provide statistics about query and database status. Hibernate IndexHibernate Tutorial Hibernate with Eclipse Hibernate Example Hibernate Log4j Inheritance Mapping Hibernate Mapping
Tx Management HQL HCQL Named Query Hibernate Caching Second Level Cache Integration Interview Questions Next TopicHibernate Architecture |