hibernate-mwrecon.cfg.xml 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!DOCTYPE hibernate-configuration PUBLIC
  3. "-//Hibernate/Hibernate Configuration DTD 3.0//EN"
  4. "http://hibernate.sourceforge.net/hibernate-configuration-3.0.dtd">
  5. <hibernate-configuration>
  6. <session-factory>
  7. <property name="dialect">org.hibernate.dialect.DB2Dialect</property>
  8. <property name="hibernate.connection.datasource">jdbc/db2/mwapp_rekon_ds</property>
  9. <!--property name="hibernate.transaction.factory_class">org.hibernate.transaction.CMTTransactionFactory</property-->
  10. <property name="hibernate.transaction.factory_class">org.hibernate.transaction.JDBCTransactionFactory</property>
  11. <property name="hibernate.transaction.manager_lookup_class">org.hibernate.transaction.WebSphereExtendedJTATransactionLookup</property>
  12. <!--prop key="hibernate.transaction.flush_before_completion">true</prop>
  13. <prop key="hibernate.transaction.auto_close_session">true</prop>
  14. <prop key="hibernate.cache.use_query_cache">false</prop>
  15. <prop key="hibernate.cache.use_second_level_cache">false</prop>
  16. <property name="jta.UserTransaction">java:comp/UserTransaction</property-->
  17. <property name="hibernate.show_sql">false</property>
  18. <property name="hibernate.format_sql">true</property>
  19. <property name="hibernate.use_sql_comments">true</property>
  20. <property name="hibernate.use_outer_join">true</property>
  21. <!-- property name="hibernate.hbm2ddl.auto">create-drop</property -->
  22. <!-- property name="hibernate.hbm2ddl.auto">validate</property -->
  23. <!-- property name="hibernate.hbm2ddl.auto">update</property -->
  24. <mapping resource="hbm/app/Attribute.hbm.xml" />
  25. <mapping resource="hbm/rekon/DataQuery.hbm.xml" />
  26. <mapping resource="hbm/rekon/DbConnection.hbm.xml" />
  27. <mapping resource="hbm/rekon/Channel.hbm.xml" />
  28. <mapping resource="hbm/rekon/ReconProcess.hbm.xml" />
  29. <mapping resource="hbm/rekon/TableHeader.hbm.xml" />
  30. <mapping resource="hbm/rekon/ReconAction.hbm.xml" />
  31. <mapping resource="hbm/rekon/ReconSchedule.hbm.xml" />
  32. <!--mapping resource="hbm/rekon/CalendarDate.hbm.xml" />
  33. <mapping resource="hbm/rekon/Channel.hbm.xml" />
  34. <mapping resource="hbm/rekon/FileDb.hbm.xml" />
  35. <mapping resource="hbm/rekon/FormatInfo.hbm.xml" />
  36. <mapping resource="hbm/rekon/PrintDetail.hbm.xml" />
  37. <mapping resource="hbm/rekon/PrintText.hbm.xml" />
  38. <mapping resource="hbm/rekon/ReconCompare.hbm.xml" />
  39. <mapping resource="hbm/rekon/ReconFtp.hbm.xml" />
  40. <mapping resource="hbm/rekon/ReconJoin.hbm.xml" />
  41. <mapping resource="hbm/rekon/UpdateDb.hbm.xml" /-->
  42. </session-factory>
  43. </hibernate-configuration>