分发使用 Hibernate 的持久性类
因此,我有一个独立应用程序和一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 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.