Setting up Hibernate Development Environment

Setup your development Required Softwares To Build Hibernate Applications, you need the following: Java Integrated Development Environment (IDE)Database Server (MySQL server)Hibernate JAR files and JDBC Driver Create a new Java project Create a new folder "lib" for Hibernate jar files Download Hibernate ORM zip form hibernate.org Now download JDBC drivers (Connector/J) zip from link below: … Continue reading Setting up Hibernate Development Environment

Hibernate Introduction

Hibernate Overview Topics What is Hibernate?Benefits of HibernateCode Snippets What is Hibernate? A framework for persisting/ saving java objects into a databasewww.hibernate.org At high level you will have Java Application, it will make use of Hibernate framework for saving and retrieving data from the database. Benefits of Hibernate  Hibernate handles all the low-level SQLMinimize the … Continue reading Hibernate Introduction