Advertisement
Guest User

Untitled

a guest
Sep 6th, 2017
100
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.85 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <persistence xmlns="http://java.sun.com/xml/ns/persistence"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/persistence
  5. http://java.sun.com/xml/ns/persistence/persistence_2_0.xsd"
  6. version="2.0">
  7.  
  8. <!-- TESTING !!!!!!!!! -->
  9.  
  10. <persistence-unit name="testing" transaction-type="RESOURCE_LOCAL">
  11. <provider>org.hibernate.ejb.HibernatePersistence</provider>
  12.  
  13. <class>jacklow.model.Empresa </class>
  14. <class>jacklow.model.Cuenta </class>
  15.  
  16. <properties>
  17. <property name="hibernate.archive.autodetection" value="class"/>
  18.  
  19.  
  20. <property name="hibernate.connection.driver_class" value="com.mysql.jdbc.Driver" />
  21. <property name="hibernate.connection.url" value="jdbc:mysql://localhost:3306/testing" />
  22. <property name="hibernate.connection.username" value="root" />
  23. <property name="hibernate.connection.password" value="toor" />
  24.  
  25. <!--
  26. <property name="hibernate.connection.driver_class" value="org.hsqldb.jdbcDriver" />
  27. <property name="hibernate.connection.url" value="jdbc:hsqldb:mem:app-db" />
  28. <property name="hibernate.connection.username" value="sa" />
  29. <property name="hibernate.connection.password" value="" />
  30. <property name="hibernate.dialect" value="org.hibernate.dialect.HSQLDialect" />
  31. -->
  32.  
  33. <property name="hibernate.show_sql" value="true" />
  34. <property name="hibernate.format_sql" value="true" />
  35. <property name="use_sql_comments" value="true" />
  36. <property name="hibernate.hbm2ddl.auto" value="update" />
  37. </properties>
  38.  
  39. </persistence-unit>
  40.  
  41. </persistence>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement