Transaction in hibernate

What is Transacton in general? A Transaction represents a unit of work performed within the database management system against a database. We generally group the related work within one transaction so that if part of the work is failed then entire transaction should be failed. Transaction has 4 main properties (ACID) ACID stands for Atomicity,Consistency,Isolation […]

Share this article on

Spring MVC with Hibernate CRUD example

In this article, We will learn about how to integrate Hibernate with Spring MVC application Step 1 Create Spring MVC project, Please refer Spring MVC setup in eclipse article on how to do it. Project structure Step 2 Update pom.xml with required dependencies <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/maven-v4_0_0.xsd">     <modelVersion>4.0.0</modelVersion>     […]

Share this article on
< Previous Next >