将 java 对象持久保存到 xml 所需的建议
我们正在使用 hibernate 从 oracle 数据库加载数据。我需要从其中一个表加载数据,然后将该表中选定的数据作为 xml 文件存储在另一个表中。如果有人能建议实现此功能的最佳方法是什么,那就太好了?
We are using hibernate to load data from oracle database. I need to load the data from one of the tables and then store selected data from this table as an xml file in another table. It would be great if someone could suggest, what would be the best way to achieve this functionality?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
看一下这个问题,其中讨论了可用于将 Java 对象转换为 XML 的库(例如 JAXB 和 XStream)。
使用开源 API 将 java 对象转换为 xml 的最佳方法是什么
Take a look at this question which discusses libraries (such as JAXB and XStream) you can use to convert Java objects to XML.
What is the best way to convert a java object to xml with open source apis
使用 ThougthWorks 的 Xstream。
“XStream 是一个简单的库,用于将对象序列化为 XML 并再次返回。”
Use Xstream of ThougthWorks.
"XStream is a simple library to serialize objects to XML and back again."
XMLEncoder (java.beans.XMLEncoder) 是它已经包含在 JDK 中,使您能够将 java 对象持久保存到 XML,而无需任何外部库或工具。
示例类:
用于序列化为 XML 的帮助程序类:
生成的 XML:
XMLEncoder (java.beans.XMLEncoder) is already included in the JDK and enables you to persist java objects to XML without any external libraries or tools.
An example class:
Helper class to serialize to XML:
The resulting XML:
如果您使用 JPA 来保存实体,请查看是否可以将提供程序切换到 EclipseLink。如果可以为您将相同的 JPA 持久 pojo 转换为 XML。所以你只需要处理单个库。
If you are using JPA to persist your entities then look at if you can switch your provider to EclipseLink. If can convert the the same JPA persistent pojos to XML for you. So you will only have to deal with single library.
你可以看看 xmlbeans
You can take a look at xmlbeans