Guest User

Untitled

a guest
Jul 12th, 2018
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. <hibernate-configuration>
  2. <session-factory>
  3. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  4. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/databasename</property>
  5. <property name="hibernate.connection.username">username</property>
  6. <property name="hibernate.connection.password">password</property>
  7. <property name="hibernate.show_sql">true</property>
  8. <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  9. <property name="hbm2ddl.auto">update</property>
  10. </session-factory>
  11. </hibernate-configuration>
Add Comment
Please, Sign In to add comment