Mercurial > lada > lada-server
view src/main/resources/META-INF/persistence.xml @ 25:34d7ecfba8d1
Added Relation to Kommentare by using the atomatic generation from database
scheme. Doesn't work as expected and so I needed to add some extra code
(eg. insertable/updateable=false)
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 26 Apr 2013 19:52:21 +0200 |
parents | c19770952a6e |
children | 47728bab8cb1 |
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> <class>de.intevation.model.PProbe</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>