Java JAXB XJC代码生成表单XSD模式问题
我有自己的域模型和相应的 XSD 架构。它由在我的应用程序中交换的数据类型和消息组成。我使用 Java JRE 1.5 中的 XJC 工具为给定的 XSD 模式生成 Java 类。生成的类既不包含序列化/反序列化方法,也不包含验证代码。如何使用 JAXB 实现此目的?
问候
I have my own domain model and corresponding XSD schema for it. It consists of data types and messages that are exchanged in my application. I use XJC tool from Java JRE 1.5 for generation of Java classes for the given XSD schema. The generated classes do not contain neither the serialization/deserialization method nor the validation code. How can I achieve this using JAXB?
Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您使用的是 JAXB 1.x 还是 2.x?
如果是 2.x,则内置验证。请参阅此 文章。
您的意思是您只希望代码将 Bean 编组为 XML 并将 XML 解编为 Bean 吗?
有很多 文章 显示了这一点。下面是将 bean 编组到 xml 中的示例:
Are you using JAXB 1.x or 2.x?
If 2.x then validation is built in. See this article.
Do you mean that you just want the code to marshall the Bean to XML and unmarshall the XML to a Bean?
There are many articles that show this. Here's an example of marshalling a bean into xml: