• Courses
  • Tutorials
  • Jobs
  • Practice
  • Contests
September 12, 2022 |1.1K Views
How to save an Object in database using Hibernate Framework
Description
Discussion

In this video, we will be discussion how to save an Object in Database using Hibernate Framework?

Let us discuss what is Hibernate?

Hibernate framework provides abstraction layer which means that programmer does not have to worry about the implementations. So, hibernate plays its role here by doing the implementations for you internally like establishing a connection with the database, writing query to perform CRUD operations etc. 

Hibernate framework is used to develop persistence logic which means to store and process the data for long use. Hibernate is an open-source, non-invasive, light-weight java ORM framework which is used to develop objects which are independent of the database software and make independent persistence logic in all JAVA, JEE. 

Hibernate Example using JPA and MySQL: https://www.geeksforgeeks.org/hibernate-example-using-jpa-and-mysql/
Introduction to Hibernate Framework: https://www.geeksforgeeks.org/introduction-to-hibernate-framework/?