Advertisement
Guest User

Untitled

a guest
Jun 3rd, 2016
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.44 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7.  
  8. <session-factory>
  9.  
  10. <!-- Database connection settings -->
  11. <property name="connection.driver_class">org.postgresql.Driver</property>
  12. <property name="connection.url">jdbc:postgresql://localhost:5432/baza_test</property>
  13. <property name="connection.username">test</property>
  14. <property name="connection.password">test1</property>
  15.  
  16. <!-- JDBC connection pool (use the built-in) -->
  17. <property name="connection.pool_size">1</property>
  18.  
  19. <!-- SQL dialect -->
  20. <property name="dialect">org.hibernate.dialect.PostgreSQL82Dialect</property>
  21.  
  22. <!-- Enable Hibernate's automatic session context management -->
  23. <property name="current_session_context_class">thread</property>
  24.  
  25. <!-- Echo all executed SQL to stdout -->
  26. <property name="show_sql">false</property>
  27.  
  28. <!-- Drop and re-create the database schema on startup -->
  29. <property name="hbm2ddl.auto">update</property>
  30.  
  31. <!-- List of XML mapping files -->
  32. <mapping resource="Employee.hbm.xml"/>
  33. <mapping resource="User.hbm.xml"/>
  34. <mapping package="models"/>
  35.  
  36. </session-factory>
  37.  
  38. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement