Advertisement
Guest User

Untitled

a guest
Nov 13th, 2018
108
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.04 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.org/dtd/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  8. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/Book</property>
  9. <property name="hibernate.connection.username">root</property>
  10. <property name="hibernate.connection.password"></property>
  11. <property name="hibernate.connection.pool_size">1</property>
  12. <property name="hibernate.current_session_context_class">thread</property>
  13. <property name="hibernate.show_sql">true</property>
  14. <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  15.  
  16. <!-- >mapping resource="book.hbm.xml" / -->
  17. <mapping class="org.itstep.maven.Person"></mapping>
  18. </session-factory>
  19. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement