Guest User

Untitled

a guest
May 22nd, 2017
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 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://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory name="mySession">
  7. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  8. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/databaseagenda</property>
  9. <property name="hibernate.connection.username">root</property>
  10. <property name="hibernate.dialect">org.hibernate.dialect.MySQL5Dialect</property>
  11.  
  12. <property name="show_sql"> true</property>
  13. <property name="format_sql"> true</property>
  14. <property name="hbm2ddl.auto">create</property>
  15.  
  16. </session-factory>
  17. </hibernate-configuration>
Add Comment
Please, Sign In to add comment