如何从 hibernate 映射文件生成 Jaxb-XML-Beans?
我想生成 XML Jaxb 类(就像这里 在此处输入链接描述)来自 hibernate 映射文件 (hbm.xml)。那么是否有机会使用 hibernate-Tool hbm2java 来做到这一点,或者您认为我应该更简单地使用 XSLT 来做到这一点?
I want to generate XML Jaxb-classes (like here enter link description here) from hibernate mapping file (hbm.xml). So is there a chance to do that with the hibernate-Tool hbm2java or do you think, that I should simpler do that with XSLT?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设您已经拥有使用 hibernate 映射的 POJO,那么您就可以将它们与 JAXB 一起使用。 JAXB 是例外配置,这意味着您只需在希望映射行为不同于默认行为的地方添加注释即可。
示例
Assuming you already have the POJOs that you are mapping with hibernate, then you can already use them with JAXB. JAXB is configuration by exception which means you only need to add annotations where you want the mapping behaviour to differ from the default.
For an Example
如果您希望将 hibernate 对象转换为 XML,您可以尝试 hibernate 的功能来为您做到这一点。您可以在 hbm.xml 本身中提供这两种映射。请参阅链接了解更多详情。
http://docs.jboss.org/hibernate/core /3.3/reference/en/html/xml.html
If you're looking to convert hibernate objects to XML,you can try hibernate's feature to do that for you. You can provide both mappings in the hbm.xml itself. Please see link for more details.
http://docs.jboss.org/hibernate/core/3.3/reference/en/html/xml.html