梅文 + Hibernate 注释模式生成
我有一堆用休眠注释注释的类。我正在使用 Maven、Hibernate 和 Spring。如何使用 hibernate3-maven-plugin 的 hbm2ddl 生成数据库架构?
I have a bunch of classes annotated with hibernate annotations. I'm using Maven, Hibernate and Spring. How can I generated the DB schema using hibernate3-maven-plugin's hbm2ddl?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
像这样的简短示例:
当然,阅读文档会有帮助。
a short example like this:
and of course reading the documentation would have helped.
假设您的项目具有以下结构:
persistence.xml
包含以下内容:然后以下配置将导出架构作为构建的一部分:
替换
jpaconfiguration
和annotationconfiguration
的persitence.xml
和src/main/resources/hibernate.cfg.xml
(如果您不使用 JPA)。下面是所获得输出的摘录:
Let's assume your project has the following structure:
That the
persistence.xml
contains the following:Then the following configuration would export the schema as part of the build:
Replace the
jpaconfiguration
and thepersitence.xml
byannotationconfiguration
and asrc/main/resources/hibernate.cfg.xml
if you are not using JPA.Below an extract of the obtained output: