| 12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
- <hibernate-configuration>
- <session-factory>
- <property name="hibernate.connection.datasource">jdbc/db2/mwapp_mwapp_ds</property>
- <property name="hibernate.dialect">org.hibernate.dialect.DB2Dialect</property>
- <property name="hibernate.show_sql">false</property>
- <property name="hibernate.format_sql">true</property>
- <property name="hibernate.use_sql_comments">true</property>
- <property name="hibernate.use_outer_join">true</property>
- <mapping resource="hbm/app/Attribute.hbm.xml" />
- <mapping resource="hbm/app/EodConfig.hbm.xml" />
- <mapping resource="hbm/app/Privilege.hbm.xml" />
- <mapping resource="hbm/app/Role.hbm.xml" />
- <mapping resource="hbm/app/SysParam.hbm.xml" />
- </session-factory>
- </hibernate-configuration>
|