Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想用可选和强制参数信息定义 web 服务方法(操作)。这样我就可以生成 xsd 文件,其中包含特定操作的参数是可选的还是必需的信息。
您可以为所有参数定义一个自己的对象。这些参数有些是强制性的,有些不是。通过将这个自己的对象定义为 JAXB 类,您就完成了。SOAP 发送的 XML 将仅包含非强制性数据(如果存在)。