分发使用 Hibernate 的持久性类

发布于 2024-11-26 09:02:06 字数 166 浏览 0 评论 0原文

因此,我有一个独立应用程序和一个 Web 应用程序要做,但我在独立应用程序中创建的持久性类也将​​在 Web 应用程序中使用。 由于我的独立项目对于每个持久性类都有 hibernate.cfg.xml 和 hbm.xml,因此如何像在 JAR 中一样导出该项目,然后将其导入到 Web 应用程序项目中并轻松使用这些类?

So I have a standalone application and a web application to do, but the persistance classes that I've created in the standalone gonna be used in the web application too.
Since my standalone project have the hibernate.cfg.xml and the hbm.xml for each persistance class, how can I export this project like in a JAR and just import in the web application project and use the classes easily?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

天冷不及心凉 2024-12-03 09:02:06

使用 maven 创建一个包含持久性类和 *.hbm.xml 文件的 jar。在您的 web 应用程序中,您可以使用此 jar 作为依赖项,并使用 hbm 文件来配置您的会话工厂 bean。

Use maven to create a jar containing persistence classes and *.hbm.xml files. In your webapp you can use this jar as a dependency and use the hbm files to configure your session factory bean.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文