persistence.xml 1.4 KB

123456789101112131415161718192021222324
  1. <?xml version="1.0" encoding="UTF-8" standalone="no"?>
  2. <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="2.0"
  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="persistenceUnit"
  6. transaction-type="RESOURCE_LOCAL">
  7. <provider>org.hibernate.ejb.HibernatePersistence</provider>
  8. <properties>
  9. <property name="hibernate.dialect" value="org.hibernate.dialect.Oracle10gDialect" />
  10. <!-- value="create" to build a new database on each run; value="update"
  11. to modify an existing database; value="create-drop" means the same as "create"
  12. but also drops tables when Hibernate closes; value="validate" makes no changes
  13. to the database -->
  14. <property name="hibernate.hbm2ddl.auto" value="update" />
  15. <property name="hibernate.ejb.naming_strategy" value="org.hibernate.cfg.ImprovedNamingStrategy" />
  16. <property name="hibernate.connection.charSet" value="UTF-8" />
  17. <!-- Uncomment the following two properties for JBoss only -->
  18. <!-- property name="hibernate.validator.apply_to_ddl" value="false" / -->
  19. <!-- property name="hibernate.validator.autoregister_listeners" value="false"
  20. / -->
  21. </properties>
  22. <class>com.uas.platform.core.model.Token</class>
  23. </persistence-unit>
  24. </persistence>