1
0

hibernate-mwapp-config.cfg.xml 937 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
  3. <hibernate-configuration>
  4. <session-factory>
  5. <property name="hibernate.connection.datasource">jdbc/db2/mwapp_mwapp_ds</property>
  6. <property name="hibernate.dialect">org.hibernate.dialect.DB2Dialect</property>
  7. <property name="hibernate.show_sql">false</property>
  8. <property name="hibernate.format_sql">true</property>
  9. <property name="hibernate.use_sql_comments">true</property>
  10. <property name="hibernate.use_outer_join">true</property>
  11. <mapping resource="hbm/app/Attribute.hbm.xml" />
  12. <mapping resource="hbm/app/EodConfig.hbm.xml" />
  13. <mapping resource="hbm/app/Privilege.hbm.xml" />
  14. <mapping resource="hbm/app/Role.hbm.xml" />
  15. <mapping resource="hbm/app/SysParam.hbm.xml" />
  16. </session-factory>
  17. </hibernate-configuration>