Hibernate
Overview
Hybernate is java based ORM tool that provides framework
for mapping application domain
objects to the
relational
database tables and vice versa.
Some of the benefits of using Hibernate as ORM tool are: Hibernate supports mapping of java classes to database tables and vice versa.
Hibernate is one of the most widely used Java ORM tool. Most of the applications use relational databases to store application information and at the low level we use JDBC API for connecting to databases and perform CRUD operations.
Object-relational mapping or ORM is the programming technique to map application domain model objects to the relational database tables. Hibernate is java based ORM tool that provides framework for mapping application domain objects to the relational database tables and vice versa.
