| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- <?xml version="1.0" encoding="UTF-8"?>
- <!DOCTYPE hibernate-configuration PUBLIC
- "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
- "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
-
- <hibernate-configuration>
- <session-factory>
- <property name="dialect">org.hibernate.dialect.DB2Dialect</property>
- <property name="hibernate.connection.datasource">jdbc/db2/mwconfig_mwui_ds</property>
- <!--property name="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property-->
- <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
- <property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.WebSphereExtendedJTATransactionLookup</property>
- <!--prop key="hibernate.transaction.flush_before_completion">true</prop>
- <prop key="hibernate.transaction.auto_close_session">true</prop>
- <prop key="hibernate.cache.use_query_cache">false</prop>
- <prop key="hibernate.cache.use_second_level_cache">false</prop>
- <property name="jta.UserTransaction">java:comp/UserTransaction</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>
- <!-- property name="hibernate.hbm2ddl.auto">create-drop</property -->
- <!-- property name="hibernate.hbm2ddl.auto">validate</property -->
- <!-- property name="hibernate.hbm2ddl.auto">update</property -->
-
-
- <mapping resource="hbm/config/Adaptor.hbm.xml" />
- <mapping resource="hbm/config/AdaptorCodex.hbm.xml" />
- <mapping resource="hbm/config/AdaptorParam.hbm.xml" />
- <mapping resource="hbm/config/Charges.hbm.xml" />
- <mapping resource="hbm/config/Client.hbm.xml" />
- <mapping resource="hbm/config/ClientTarget.hbm.xml" />
- <mapping resource="hbm/config/Codex.hbm.xml" />
- <mapping resource="hbm/config/Dbconn.hbm.xml" />
- <mapping resource="hbm/config/DbQuery.hbm.xml" />
- <mapping resource="hbm/config/DevTellerMap.hbm.xml" />
- <mapping resource="hbm/config/ErrorMap.hbm.xml" />
- <mapping resource="hbm/config/Host.hbm.xml" />
- <mapping resource="hbm/config/Log.hbm.xml" />
- <mapping resource="hbm/config/Mapping.hbm.xml" />
- <mapping resource="hbm/config/MappingGroup.hbm.xml" />
- <mapping resource="hbm/config/MappingGroupLine.hbm.xml" />
- <mapping resource="hbm/config/Parser.hbm.xml" />
- <mapping resource="hbm/config/ParserCodex.hbm.xml" />
- <mapping resource="hbm/config/RoutingTable.hbm.xml" />
- <mapping resource="hbm/config/RpgCall.hbm.xml" />
- <mapping resource="hbm/config/RpgCallArg.hbm.xml" />
- <mapping resource="hbm/config/ServerPort.hbm.xml" />
- <mapping resource="hbm/config/ParamMap.hbm.xml" />
- <mapping resource="hbm/config/FileParam.hbm.xml" />
- </session-factory>
- </hibernate-configuration>
|