2 ~ Hibernate, Relational Persistence for Idiomatic Java
4 ~ License: GNU Lesser General Public License (LGPL), version 2.1 or later.
5 ~ See the lgpl.txt file in the root directory or <http://www.gnu.org/licenses/lgpl-2.1.html>.
7 <persistence xmlns="http://java.sun.com/xml/ns/persistence"
8 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
9 xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
12 <persistence-unit name="org.hibernate.tutorial.jpa">
14 Persistence unit for the JPA tutorial of the Hibernate Getting Started Guide
17 <class>org.hibernate.tutorial.em.Event</class>
20 <property name="javax.persistence.jdbc.driver" value="org.h2.Driver" />
21 <property name="javax.persistence.jdbc.url" value="jdbc:h2:${project.build.directory}/db/test;MVCC=TRUE" />
22 <property name="javax.persistence.jdbc.user" value="sa" />
23 <property name="javax.persistence.jdbc.password" value="" />
25 <property name="hibernate.show_sql" value="true" />
26 <property name="hibernate.hbm2ddl.auto" value="create" />