从 Hibernate XML 配置文件生成实体类和数据库架构
是否有一个工具可以从 Hibernate XML 配置文件生成实体类和数据库模式? 在 PHP 中 Symfony 框架(基于 Doctrine) 用于创建模式和我一直在使用的模型类:
$ php symfony doctrine:build-model
$ php symfony doctrine:build-sql
如何在 Hibernate 中实现此目的? 我只发现逆向工程工具用于根据模式生成配置文件和实体类,但那就是不是我要找的。
Is there a tool for generating entity classes and database schemas from a Hibernate XML config file?
In PHP Symfony framework (based on Doctrine) for creating schema and model classes I've been using:
$ php symfony doctrine:build-model
$ php symfony doctrine:build-sql
How can I achieve this in Hibernate?
I found only Reverse Engineering tool for generating config file and entity classes based on schema, but that's not what I'm looking for.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
可以使用 Maven 使用 hibernate 构建 DDL,但根据我昨晚的经验,您仍然需要之前在 Java 中生成实体类。您需要的 Maven 插件是 Codehaus hibernate3 maven 工件,详细信息如下:
http://mojo.codehaus.org/maven-hibernate3/hibernate3-maven- 考虑到我
昨晚的经历,这不是一个即插即用的解决方案:P
It's possible to use Maven to build the DDL using hibernate, but from my experience last night you still need to have generated your entity classes previously in Java. The Maven plugin you'd need is the Codehaus hibernate3 maven artifact, detailed here:
http://mojo.codehaus.org/maven-hibernate3/hibernate3-maven-plugin/
It's not a plug and play solution, given my experiences last night :P