有没有办法将 XSD 限制添加到 JAX-WS 生成的架构中?

发布于 2024-12-02 16:48:11 字数 339 浏览 1 评论 0原文

查看包 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 技术交流群。

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

发布评论

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

评论(1

违心° 2024-12-09 16:48:11

我不认为你错过了任何东西——你只是遇到了现有的限制。您可以对枚举进行操作 - 看看 此处 - 但这几乎与您想要的类似,并假设 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文