view src/main/resources/META-INF/persistence.xml @ 26:47728bab8cb1

Fixed persistence.xml
author Torsten Irländer <torsten.irlaender@intevation.de>
date Tue, 30 Apr 2013 14:47:59 +0200
parents 34d7ecfba8d1
children 3fced8e2a030
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">
   	<jta-data-source>java:/jboss/postgresql</jta-data-source>
   	<class>de.intevation.model.LKommentarP</class>
   	<class>de.intevation.model.LKommentarPPK</class>
   	<class>de.intevation.model.LProbe</class>
      <!-- If you are running in a production environment, add a managed 
         data source, the example data source is just for development and testing! -->
      <properties>
         <!-- Properties for Hibernate -->
         <property name="hibernate.show_sql" value="true" />
         <property name="hibernate.dialect" value="org.hibernate.dialect.PostgreSQLDialect"/>
         <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)