Advertisement
Guest User

Untitled

a guest
Jan 21st, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.86 KB | None | 0 0
  1. `<?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="connection.driver_class">oracle.jdbc.OracleDriver</property>
  8. <property name="connection.url">jdbc:oracle:thin:@localhost:1521:pannadatabas</property>
  9. <property name="connection.username">SYSTEM</property>
  10. <property name="connection.password">***</property>
  11. <mapping class="models.AddressesEntity"/>
  12. <mapping class="models.ContractsEntity"/>
  13. <mapping class="models.CountriesEntity"/>
  14. <!-- DB schema will be updated if needed -->
  15. <!-- <property name="hbm2ddl.auto">update</property> -->
  16. </session-factory>
  17. </hibernate-configuration>`
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement