Advertisement
Guest User

Untitled

a guest
Aug 16th, 2016
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.87 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  3. "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  4. <hibernate-configuration>
  5. <session-factory name="sessionFactory">
  6. <property name="hibernate.bytecode.use_reflection_optimizer">false</property>
  7. <property name="hibernate.connection.driver_class">org.postgresql.Driver</property>
  8. <property name="hibernate.connection.password">dementoryo</property>
  9. <property name="hibernate.connection.url">jdbc:postgresql://localhost:5432/Universidades</property>
  10. <property name="hibernate.connection.username">Augusto</property>
  11. <property name="hibernate.default_schema">public</property>
  12. <property name="hibernate.dialect">org.hibernate.dialect.PostgreSQLDialect</property>
  13. <property name="hibernate.search.autoregister_listeners">false</property>
  14. <property name="hibernate.validator.apply_to_ddl">false</property>
  15. </session-factory>
  16. </hibernate-configuration>
  17.  
  18. <?xml version="1.0" encoding="UTF-8"?>
  19. <!DOCTYPE hibernate-reverse-engineering PUBLIC "-//Hibernate/Hibernate Reverse Engineering DTD 3.0//EN" "http://hibernate.sourceforge.net/hibernate-reverse-engineering-3.0.dtd" >
  20.  
  21. <hibernate-reverse-engineering>
  22. <table-filter match-schema="public" match-name="Alumnos"/>
  23. <table-filter match-schema="public" match-name="Carrera"/>
  24. <table-filter match-schema="public" match-name="Detalle_Facultad"/>
  25. <table-filter match-schema="public" match-name="Docente"/>
  26. <table-filter match-schema="public" match-name="Facultad"/>
  27. <table-filter match-schema="public" match-name="Materia"/>
  28. <table-filter match-schema="public" match-name="Materia_Correlativa"/>
  29. <table-filter match-schema="public" match-name="Persona"/>
  30. <table-filter match-schema="public" match-name="Universidad"/>
  31. </hibernate-reverse-engineering>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement