Mercurial > lada > lada-server
changeset 16:823a417cb8e5
Configured which datasource to use in the project. The datasource is
configured as datasource in JBoss.
author | Torsten Irländer <torsten.irlaender@intevation.de> |
---|---|
date | Fri, 26 Apr 2013 13:13:20 +0200 |
parents | 624611a29348 |
children | 4ed66a87c0c4 |
files | src/main/resources/META-INF/persistence.xml |
diffstat | 1 files changed, 5 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/main/resources/META-INF/persistence.xml Thu Apr 18 17:03:06 2013 +0200 +++ b/src/main/resources/META-INF/persistence.xml Fri Apr 26 13:13:20 2013 +0200 @@ -4,15 +4,16 @@ xsi:schemaLocation=" http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"> - <persistence-unit name="primary"> + <persistence-unit name="primary" transaction-type="JTA"> + <jta-data-source>java:/jboss/postgresql</jta-data-source> <!-- If you are running in a production environment, add a managed data source, the example data source is just for development and testing! --> - <jta-data-source>java:jboss/datasources/ladaDS</jta-data-source> <class>de.intevation.model.LProbe</class> <properties> <!-- Properties for Hibernate --> - <property name="hibernate.hbm2ddl.auto" value="create-drop" /> - <property name="hibernate.show_sql" value="false" /> + <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> \ No newline at end of file