Guest User

persistence.xml

a guest
Aug 27th, 2012
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.90 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence version="2.0"
  3.     xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd">
  5.     <persistence-unit name="aves">
  6.         <provider>org.hibernate.ejb.HibernatePersistence</provider>
  7.         <jta-data-source>java:/AvesDSXA</jta-data-source>
  8.         <class>cz.sedlackovi.test.entity.Zprava</class>
  9.         <properties>
  10.             <!-- Insert Hibernate Dialect -->
  11.             <property name="hibernate.show_sql" value="true" />
  12.             <property name="hibernate.format_sql" value="true" />
  13.            
  14.             <property name="hibernate.hbm2ddl.auto" value="create-drop" />
  15.             <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect" />        
  16.            
  17.             <!-- -->
  18.         </properties>
  19.     </persistence-unit>
  20.  
  21. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment