有没有办法将 XSD 限制添加到 JAX-WS 生成的架构中?
查看包 javax.jws
和相关文档,我没有找到一种方法来使其自动生成 XSD 限制,例如,
<xs:element name="letter">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[a-z]"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
是否有一些我缺少的基本内容?也许我问错了问题?
Looking at the package javax.jws
and related documentation I didn't find a way to make it to auto generate XSD Restrictions, e.g.
<xs:element name="letter">
<xs:simpleType>
<xs:restriction base="xs:string">
<xs:pattern value="[a-z]"/>
</xs:restriction>
</xs:simpleType>
</xs:element>
Is there something basic that I'm missing? And am I asking the wrong question perhaps?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我不认为你错过了任何东西——你只是遇到了现有的限制。您可以对枚举进行操作 - 看看 此处 - 但这几乎与您想要的类似,并假设 javax.xml.* 是您所说的相关内容。
I don't think you're missing anything - you just hit limitations to what is out there. You can do things for enumerations - take a look here - but that's pretty much all that resembles what you want and assuming that javax.xml.* is what you referred to as related.