Advertisement
Guest User

Untitled

a guest
Mar 3rd, 2016
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.60 KB | None | 0 0
  1. <hibernate-configuration>
  2. <session-factory>
  3.  
  4. <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQL94Dialect</property>
  5. <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
  6.  
  7. <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/firstapp</property>
  8. <property name="hibernate.connection.username">postgres</property>
  9. <property name="hibernate.connection.password">*************</property>
  10. <property name="show_sql">false</property>
  11.  
  12. <mapping class="com.viinamae.model.User"/>
  13. </session-factory>
  14.  
  15. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement