Java JAXB XJC代码生成表单XSD模式问题

发布于 2024-08-02 21:12:09 字数 152 浏览 10 评论 0原文

我有自己的域模型和相应的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

静水深流 2024-08-09 21:12:09

您使用的是 JAXB 1.x 还是 2.x?

如果是 2.x,则内置验证。请参阅此 文章

您的意思是您只希望代码将 Bean 编组为 XML 并将 XML 解编为 Bean 吗?

有很多 文章 显示了这一点。下面是将 bean 编组到 xml 中的示例:

JAXBContext jaxb = JAXBContext.newInstance(MyBean.class);
Marshaller marshaller = jaxb.createMarshaller();
java.io.StringWriter sw = new StringWriter();
marshaller.marshal(myBean, sw);
System.out.println(sw.toString());

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:

JAXBContext jaxb = JAXBContext.newInstance(MyBean.class);
Marshaller marshaller = jaxb.createMarshaller();
java.io.StringWriter sw = new StringWriter();
marshaller.marshal(myBean, sw);
System.out.println(sw.toString());
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文