我正在使用spring和hibernate。目前我有这样的上下文配置文件
<bean id="sessionFactory"
class="org.springframework.orm.hibernate4.LocalSessionFactoryBean">
<!-- other properties -->
<property name="mappingDirectoryLocations" value="classpath:mappings/" />
</bean>
*.hbm.xml
映射在同一个项目中 。
现在我计划将一些实体与映射一起拉出,以便与其他项目共享。问题是,我应该如何配置bean 以从新创建的项目sessionFactory
中获取文件?
我试过但得到错误说类路径无效。*.hbm.xml
mappingJarLocations