0

datasource.hibernate.cfg.xml具有 hiberanteProperties 和所有映射资源。
但是现在我必须分别定义映射资源和属性applicationContext.xml
我可以将 datasource.hibernate.cfg.xml 指定为configLocationinside<bean id="sessionFactory" class="org.springframework.orm.hibernate.LocalSessionFactoryBean">并摆脱两者mappingResources and hibernateProperties。现在我的应用程序上下文如下所示:

<property name="mappingResources"/>
            <list>
                <value>../../src/editsolutions.hibernate.cfg.xml</value>
            </list>
        <property name="hibernateProperties"> 
           <props> 
           <prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop> 
           <prop key="hibernate.connection.isolation">3</prop> 
           <prop key="hibernate.current_session_context_class">jta</prop> 
           <prop key="hibernate.transaction.factory_class"> 
               org.hibernate.transaction.JTATransactionFactory 
           </prop> 
           <prop key="hibernate.transaction.manager_lookup_class"> 
              com.atomikos.icatch.jta.hibernate.TransactionManagerLookup 
           </prop> 
           </props>
        </property> 

注意:我不对实体类使用注释。这是一个遗留项目,一切都是通过hbm.xml.

4

1 回答 1

1

您可以设置“configLocation”属性并摆脱其他属性。

于 2013-03-26T14:15:46.963 回答