还要澄清一下:您正在专门一起谈论Spring和Hibernate,因为要显示的配置是Spring的Hibernate配置。Spring
LocalSessionFactoryBean接受多种不同的方法来设置Hibernate映射文件的位置。你只显示了使用
mappingResources的参数,但也有
mappingLocations,
mappingJarLocations和
mappingDirectoryLocations。
我认为对于您的示例,您可能想要使用
mappingDirectoryLocations并将其仅指向JAR中的特定目录,例如:
<property name="mappingDirectoryLocations"> <list> <value> com/…/domain/ </value> </list></property>
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)