
Spring, JPA and Hibernate integration tutorial
I am going to setup a simple project using maven and run the one Junit test case using Spring, JPA and hibernate. Step 1: Create the maven project and create the pom.xml The pom.xml will look like below: <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>spring-jpa-hibernate-integration-by-sambhashanam</groupId> <artifactId>spring-jpa-hibernate-integration-by-sambhashanam</artifactId> <version>0.0.1-SNAPSHOT</version> <name>spring-jpa-hibernate-integration-by-sambhashanam</name> <description>spring-jpa-hibernate-integration-by-sambhashanam</description> …