在jar中嵌入hibernate hbm.xml映射

在jar中嵌入hibernate hbm.xml映射,第1张

在jar中嵌入hibernate hbm.xml映射

还要澄清一下:您正在专门一起谈论Spring和Hibernate,因为要显示配置是Spring的Hibernate配置。Spring

LocalSessionFactoryBean
接受多种不同的方法来设置Hibernate映射文件的位置。你只显示了使用
mappingResources
的参数,但也有
mappingLocations
mappingJarLocations
mappingDirectoryLocations

我认为对于您的示例,您可能想要使用

mappingDirectoryLocations
并将其仅指向JAR中的特定目录,例如:

<property name="mappingDirectoryLocations">      <list>        <value>          com/…/domain/        </value>      </list></property>


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5168742.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-18
下一篇 2022-11-18

发表评论

登录后才能评论

评论列表(0条)

保存