Spring MVC Example

Spring MVC Example Git Source Tree

Root/src/main/resources/META-INF/persistence.xml

1<?xml version="1.0" encoding="UTF-8"?>
2<persistence xmlns="http://java.sun.com/xml/ns/persistence"
3    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4    xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd"
5    version="1.0">
6    <persistence-unit name="spring-mvc-example" transaction-type="RESOURCE_LOCAL">
7        <properties>
8            <property name="hibernate.connection.autoReconnect" value="true" />
9            <property name="hibernate.connection.autoReconnectForPools" value="true" />
10            <property name="hibernate.connection.is-connection-validation-required" value="true" />
11        </properties>
12    </persistence-unit>
13</persistence>

Archive Download this file

Branches