是否可以使用 Hibernate、JIBX 等技术自动生成带注释的映射 POJO 类?
Hibernate 可以从正确注释的 POJO 类自动生成模式。我还知道 JIBX 可以根据结构正确的 XML 模式创建数据模型(类集)。有没有办法从 XML 模式自动生成带注释的映射类?或者是否可以在一组 POJO 类上运行一个工具,并期望它在指定的类上创建有意义的注释?因此稍后我们可以使用这些类创建数据库模式。注释 JIBX 生成的每个类实际上比根据 xml 模式手动设计数据库模式需要更多的工作。
Hibernate can auto-generate schemas from properly annotated POJO classes. And I also know that JIBX can create a data model (set of classes) out of properly structured XML schemas. Is there a way to automaticaly generate annotated-mapped classes from an XML schema? Or is it just possible to run a tool on a set of POJO classes, and expect it to create meaningful annotations on the specified classes? So later on we can create database schemas using these classes. To annotate every class that JIBX produces takes actually more work than manually designing the database schema according to the xml schema.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Hyperjaxb 项目将从 XML 模式生成 JAXB 类,其中包含可用于创建数据库模式的 JPA 注释。
The Hyperjaxb project will generate JAXB classes from an XML schema that contain JPA annotations that could be used to create a database schema.
好问题!我们遇到了同样的问题,最终使用 Freemarker 开发 POJO 生成器。
顺便说一句,对这些 POJO 的要求可能会有很大差异,因此,如果存在这样的工具,它的配置一定相当臃肿。
Nice question! We had the same problem and we ended up developing the POJO generator with Freemarker.
By the way, the requirements to these POJOs may strongly vary, so, if such tool exists, it must have quite bloated configuration.