Guest User

hiber

a guest
Sep 4th, 2017
38
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1. <?xml version='1.0' encoding='UTF-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate Configuration DDT 3.0//EN"
  4. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.ddt">
  5.  
  6. <hibernate-configuration>
  7.  
  8. <session-factory>
  9.  
  10. <property name="hbm2ddl.auto">update</property>
  11. <property name="dialect">org.hibernate.dialect.Oracle11gDialect</property>
  12. <property name="connection.url">jdbc:oracle:thin:@localhost:1521:xe</property>
  13. <property name="connection.username">hr</property>
  14. <property name="connection.password">hr</property>
  15. <property name="connection.driver_class">oracle.jdbc.driver.OracleDriver</property>
  16.  
  17. <mapping resource="employee.hbm.xml"></mapping>
  18. </session-factory>
  19.  
  20. </hibernate-configuration>
Add Comment
Please, Sign In to add comment