gpt4 book ai didi

java - wsdl 级别 Web 服务中的字符限制

转载 作者:行者123 更新时间:2023-12-01 12:46:59 25 4
gpt4 key购买 nike

我已经使用 WebSphere AST 在应用程序中部署了 java WebService。我需要限制某些字段(字符串)的长度,我想知道是否可以在 wsdl 中做到这一点,而不是在 java 级别编写一些验证。

我的意思是,如果现在我的元素定义如下:

<element name="code" nillable="true" type="xsd:string"/>

我可以设置一些属性来限制“代码”的最大长度吗?

谢谢。

最佳答案

<element name="code" nillable="true" type="xsd:string"/>
<xsd:simpleType>
<xsd:restriction base="xsd:string">
<xsd:minLength value="2"/>
<xsd:maxLength value="10"/>
</xsd:restriction>
</xsd:simpleType>

关于java - wsdl 级别 Web 服务中的字符限制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24604349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com