view src/test/resources/META-INF/test-persistence.xml @ 871:53d739275c50

Status workflow definitions are needed and assumed to be given by the server. These are not data to be changed by any user, thus part of the schema.
author Tom Gottfried <tom@intevation.de>
date Mon, 08 Feb 2016 18:23:41 +0100
parents 90343e38225f
children ea550e9a09a3
line wrap: on
line source
<?xml version="1.0" encoding="UTF-8"?>
<persistence version="2.1"
   xmlns="http://xmlns.jcp.org/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/persistence http://xmlns.jcp.org/xml/ns/persistence/persistence_2_1.xsd">
    <persistence-unit name="bund" transaction-type="JTA">
        <jta-data-source>java:jboss/lada-bund</jta-data-source>
        <exclude-unlisted-classes>false</exclude-unlisted-classes>
        <properties>
            <property name="jboss.entity.manager.jndi.name" value="java:app/entitymanager/bund"/>
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisDialect"/>
            <property name="hibernate.hbm2ddl.auto" value="none"/>
            <property name="hibernate.transaction.jta.platform" value="org.hibernate.service.jta.platform.internal.JBossAppServerJtaPlatform" /> 
       </properties>
   	</persistence-unit>
   	<persistence-unit name="land">
   	    <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <jta-data-source>java:jboss/lada-land</jta-data-source>
       	<exclude-unlisted-classes>false</exclude-unlisted-classes>
    	<properties>
            <property name="jboss.entity.manager.jndi.name" value="java:app/entitymanager/land"/>
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisDialect"/>
            <property name="hibernate.hbm2ddl.auto" value="none"/>
       </properties>
    </persistence-unit>
    <persistence-unit name="stamm">
        <provider>org.hibernate.ejb.HibernatePersistence</provider>
        <jta-data-source>java:jboss/lada-stamm</jta-data-source>
        <properties>
            <property name="jboss.entity.manager.jndi.name" value="java:app/entitymanager/stamm"/>
            <property name="hibernate.show_sql" value="false" />
            <property name="hibernate.dialect" value="org.hibernate.spatial.dialect.postgis.PostgisDialect"/>
            <property name="hibernate.hbm2ddl.auto" value="none"/>
        </properties>
    </persistence-unit>
</persistence>
This site is hosted by Intevation GmbH (Datenschutzerklärung und Impressum | Privacy Policy and Imprint)