Guest User

Untitled

a guest
Jan 6th, 2019
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. <hibernate-configuration>
  2. <session-factory>
  3. <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
  4. <property name="hibernate.connection.username">postgres</property>
  5. <property name="hibernate.connection.password">postgres</property>
  6. <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/customer</property>
  7. <property name="connection_pool_size">1</property>
  8. <property name="dialect">org.hibernate.dialect.PostgresPlusDialect</property>
  9. <property name="show_sql">true</property>
  10. <property name="hibernate.current_session_context_class">thread</property>
  11. </session-factory>
Add Comment
Please, Sign In to add comment