Skip to main content

Posts

Showing posts from September, 2023

Hibernate 5 Tutorials

Hibernate 5 Tutorials  Now Hibernate 3 and 4 are deprecated and Industry prefer Hibernate 5 and Hibernate 6. You  have knowledge of Hibernate 5 also if you have knowledge Hibernate 3 and four. Many Updating added in Hibernate 5 Now I am explaining Step by Step 1)  Open Eclipse Create Maven Project, Select Internal under Category and select QuickStart archetype 2)  Add Dependency under pom.xml file of hibernate and MySQL Connector <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">   <modelVersion>4.0.0</modelVersion>   <groupId>com.scs</groupId>   <artifactId>Hibernate5</artifactId>   <version>0.0.1-SNAPSHOT</version>   <packaging>jar</packaging>   <name>Hibernate5</name>   <url>http://maven.a...