summaryrefslogtreecommitdiffstats
path: root/java-hibernate/META-INF/persistence.xml
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2011-11-22 16:50:58 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2011-11-22 16:50:58 +0100
commitdcda71cc643a628704b4d5840ed35d6552cbc69b (patch)
treeeea9cdeca1ad4e7626bb71edb62efd54234d410d /java-hibernate/META-INF/persistence.xml
parentbe38a2ce3ce51b46cb28c19cc20f178cc5b63169 (diff)
downloadskeletons-dcda71cc643a628704b4d5840ed35d6552cbc69b.zip
skeletons-dcda71cc643a628704b4d5840ed35d6552cbc69b.tar.gz
add java-hibernate test
Diffstat (limited to 'java-hibernate/META-INF/persistence.xml')
-rw-r--r--java-hibernate/META-INF/persistence.xml48
1 files changed, 48 insertions, 0 deletions
diff --git a/java-hibernate/META-INF/persistence.xml b/java-hibernate/META-INF/persistence.xml
new file mode 100644
index 0000000..9f9f1fd
--- /dev/null
+++ b/java-hibernate/META-INF/persistence.xml
@@ -0,0 +1,48 @@
+<!--
+ ~ Hibernate, Relational Persistence for Idiomatic Java
+ ~
+ ~ Copyright (c) 2010, Red Hat Inc. or third-party contributors as
+ ~ indicated by the @author tags or express copyright attribution
+ ~ statements applied by the authors. All third-party contributions are
+ ~ distributed under license by Red Hat Inc.
+ ~
+ ~ This copyrighted material is made available to anyone wishing to use, modify,
+ ~ copy, or redistribute it subject to the terms and conditions of the GNU
+ ~ Lesser General Public License, as published by the Free Software Foundation.
+ ~
+ ~ This program is distributed in the hope that it will be useful,
+ ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
+ ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License
+ ~ for more details.
+ ~
+ ~ You should have received a copy of the GNU Lesser General Public License
+ ~ along with this distribution; if not, write to:
+ ~ Free Software Foundation, Inc.
+ ~ 51 Franklin Street, Fifth Floor
+ ~ Boston, MA 02110-1301 USA
+ -->
+<persistence xmlns="http://java.sun.com/xml/ns/persistence"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
+ version="2.0">
+
+ <persistence-unit name="ch.asynk.hibernate.jpa">
+ <description>
+ Persistence unit for the JPA tutorial of the Hibernate Getting Started Guide
+ </description>
+
+ <class>ch.asynk.hibernate.jpa.EventJPA</class>
+
+ <properties>
+ <property name="javax.persistence.jdbc.driver" value="org.h2.Driver" />
+ <property name="javax.persistence.jdbc.url" value="jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE" />
+ <property name="javax.persistence.jdbc.user" value="sa" />
+ <property name="javax.persistence.jdbc.password" value="" />
+
+ <property name="hibernate.show_sql" value="true" />
+ <property name="hibernate.hbm2ddl.auto" value="create" />
+ </properties>
+
+ </persistence-unit>
+
+</persistence>