我正在嘗試將Spring 3與Spring 3.1.0集成。問題在於應用程序無法找到在hibernate.cfg.xml文件中聲明的映射文件。最初,hibernate配置具有數據源配置,hibernate屬性和映射hbm.xml文件。 高級hibernate.cfg.xml文件存在於src文件夾中。這是主文件的外觀:將Spring配置文件導入Spring應用程序上下文
<hibernate-configuration>
<session-factory>
<!-- Mappings -->
<mapping resource="com/test/class1.hbm.xml"/>
<mapping resource="/class2.hbm.xml"/>
<mapping resource="com/test/class3.hbm.xml"/>
<mapping resource="com/test/class4.hbm.xml"/>
<mapping resource="com/test/class5.hbm.xml"/>
Spring配置是:
<bean id="sessionFactoryEditSolution" class="org.springframework.orm.hibernate3.LocalSessionFactoryBean">
<property name="dataSource" ref="data1"/>
<property name="mappingResources">
<list>
<value>/master.hibernate.cfg.xml</value>
</list>
</property>
<property name="hibernateProperties">
<props>
<prop key="hibernate.dialect">org.hibernate.dialect.SQLServerDialect</prop>
<prop key="hibernate.cache.use_second_level_cache">true</prop>
</props>
</property>
</bean>