Advertisement
Guest User

Untitled

a guest
May 5th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.05 KB | None | 0 0
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  3. <hibernate-configuration>
  4. <session-factory>
  5. <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
  6. <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
  7. <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/bibliotecapweb?zeroDateTimeBehavior=convertToNull</property>
  8. <property name="hibernate.connection.username">root</property>
  9. <property name="hibernate.connection.password">bd2016</property>
  10. <mapping resource="entidades/Emprestimo.hbm.xml"/>
  11. <mapping resource="entidades/Telefones.hbm.xml"/>
  12. <mapping resource="entidades/Categoria.hbm.xml"/>
  13. <mapping resource="entidades/Associado.hbm.xml"/>
  14. <mapping resource="entidades/Itens.hbm.xml"/>
  15. <mapping resource="entidades/Livro.hbm.xml"/>
  16. </session-factory>
  17. </hibernate-configuration>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement