Mercurial > lada > lada-server
view src/test/resources/META-INF/test-persistence.xml @ 377:6f4afcd28ff3 0.6
merged.
author | Raimund Renkert <rrenkert@intevation.de> |
---|---|
date | Fri, 27 Sep 2013 10:20:19 +0200 |
parents | 177351d4cca9 |
children |
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?> <persistence version="2.0" 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"> <persistence-unit name="primary"> <!-- We use a different datasource for tests, so as to not overwrite production data. This is an unmanaged data source, backed by H2, an in memory database. Production applications should use a managed datasource. --> <!-- The datasource is deployed as WEB-INF/test-ds.xml, you can find it in the source at src/test/resources/test-ds.xml --> <jta-data-source>java:jboss/datasources/ladaTestDS</jta-data-source> <properties> <!-- Properties for Hibernate --> <property name="hibernate.hbm2ddl.auto" value="create-drop" /> <property name="hibernate.show_sql" value="false" /> </properties> </persistence-unit> </persistence>