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.
我需要在我的 XSD 文件中为我正在制作的 Web 服务提供文档。如何使用 Java Annotations 确保我的 XSD 文件中包含以下 XML?我正在使用 JWS。
<xsd:annotation> <xsd:documentation>Some documentation here</xsd:documentation> </xsd:annotation>
我发现一个好方法是“合同优先”方法。我将生成的 wsdl 和 xsd 文件复制到 WEB-INF/wsdl 中,并在 WebService 注释中指定了 wsdlLocation。然后我将 xml(在原始问题中指定)添加到 xsd 文件中。