- 论坛徽章:
- 0
|
文件部分内容如下:- .......
- <property name="connection.username">MAIN</property>
- <property name="connection.password">36zn+MsoQ</property>
- <!-- transaction api -->
- <property name="hibernate.transaction.factory_class">
- org.hibernate.transaction.JDBCTransactionFactory
- </property>
- <!-- Bind the getCurrentSession() method to the thread, session-per-conversation -->
- <property name="current_session_context_class">thread</property>
- <property name="transaction.auto_close_session">true</property>
- <!--mappings -->
- <!--<mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfStopErrorMail.hbm.xml" />-->
- <mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfDailyStatAll.hbm.xml" />
- <mapping
- resource="cn/bestwiz/jhf/core/dao/bean/main/JhfLeverageGroup.hbm.xml" />
- <mapping
- resource="cn/bestwiz/jhf/core/dao/bean/main/JhfSwapPoint.hbm.xml" />
- <!--
- <mapping
- resource="cn/bestwiz/jhf/core/dao/bean/main/JhfDepositStatusHistory.hbm.xml" />
- -->
- .......
- .......
- <class-cache
- class="cn.bestwiz.jhf.core.dao.bean.main.JhfCurrencyHolidayMaster"
- usage="read-write" />
- <class-cache class="cn.bestwiz.jhf.core.dao.bean.main.JhfSwapPoint" usage="read-write" />
- <!--
- <class-cache
- class="cn.bestwiz.jhf.core.dao.bean.main.JhfLeverageGroup"
- usage="read-write" />
- -->
复制代码 想要得到的结果:- .......
- <property name="connection.username">MAIN</property>
- <property name="connection.password">36zn+MsoQ</property>
- <!-- transaction api -->
- <property name="hibernate.transaction.factory_class">
- org.hibernate.transaction.JDBCTransactionFactory
- </property>
- <!-- Bind the getCurrentSession() method to the thread, session-per-conversation -->
- <property name="current_session_context_class">thread</property>
- <property name="transaction.auto_close_session">true</property>
- <!--mappings -->
- <!--<mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfStopErrorMail.hbm.xml" />-->
- <mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfDailyStatAll.hbm.xml" />
- <mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfLeverageGroup.hbm.xml" />
- <mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfSwapPoint.hbm.xml" />
- <!--<mapping resource="cn/bestwiz/jhf/core/dao/bean/main/JhfDepositStatusHistory.hbm.xml" />-->
- .......
- .......
- <class-cache class="cn.bestwiz.jhf.core.dao.bean.main.JhfCurrencyHolidayMaster" usage="read-write" />
- <class-cache class="cn.bestwiz.jhf.core.dao.bean.main.JhfSwapPoint" usage="read-write" />
- <!-- <class-cache class="cn.bestwiz.jhf.core.dao.bean.main.JhfLeverageGroup" usage="read-write" />-->
复制代码 |
|