Just missing a comma (#27042)

This commit is contained in:
Luiza
2019-01-16 20:35:41 -08:00
committed by Manish Giri
parent eb78b09ff8
commit fa6f009674

View File

@ -2,7 +2,7 @@
title: Hibernate
---
## Hibernate
Hibernate ORM, commonly known as Hibernate is an object-relational mapping tool for Java. It provides a system for mapping object oriented domain models to relational databases. It possesses multiple high-level object handling functions.
Hibernate ORM, commonly known as Hibernate, is an object-relational mapping tool for Java. It provides a system for mapping object-oriented domain models to relational databases. It possesses multiple high-level object handling functions.
Hibernate allows us to use any database Management System in your application. In Hibernate Database table is mapped with POJO class and Members in POJO are the feilds in table. This is how the ORM is done. POJO class contains getters and setters from which we can use directly POJO class members.