Pojo 到 xsd 生成
是否有一个库可以从 java 类生成 xsd 模式? Google 产生了很多相反的结果(来自 xsd 的 java 类)。
Is there a library which could generate a xsd schema from a java class?
Google yields lots of results the opposite ( java classes from xsd ).
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
JAXB 2.0 允许您从带注释的 Java 类创建 XML 模式。
您可以在 AMIS 博客 和 JavaPassion 站点 。
JAXB 2.0 allows you to create a XML schema from an annotated Java class.
You'll find some examples at the AMIS blog and at the JavaPassion site.
JiBX 执行此操作
JiBX does this
我会这样做:
如何使用上面的方法
Here is how I would do it:
How to use the method above
感谢您提供方法。只是想添加完整的示例。
Thanks for giving your method. Just wanted to add complete example.