Advertisement
Guest User

Untitled

a guest
Nov 8th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. <?xml version='1.0' encoding='utf-8'?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD//EN"
  4. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  5.  
  6. <hibernate-configuration>
  7. <session-factory>
  8. <!-- Database connection settings -->
  9. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  10. <property name="connection.url">jdbc:mysql://localhost:3306/htmlindex</property>
  11. <property name="connection.username">root</property>
  12. <property name="connection.password">joanna</property>
  13.  
  14. <!-- Echo all executed SQL to stdout -->
  15. <property name="show_sql">false</property>
  16.  
  17. <!-- Drop and re-create the database schema at startup -->
  18. <property name="hibernate.hbm2ddl.auto">create</property>
  19.  
  20. <!-- Mappings -->
  21. <mapping resource="pl/edu/agh/ki/bd/htmlIndexer/model/Sentence.hbm.xml" />
  22. <mapping resource="pl/edu/agh/ki/bd/htmlIndexer/model/ProcessedUrl.hbm.xml"/>
  23.  
  24. </session-factory>
  25. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement