简体   繁体   中英

Apache CXF: adding custom documentation in the WSDL?

I'm currently learning Apache CXF .

When CXF is generating a WSDL file from a Pojo, is there a way (a java annotation ?) to add a custom documentation to the WSDL file ? to describe a service or a parameter ?

I've already used @WebParam to set some descriptive names but I'd like to add a longer documentation. Something like...

@WebService
@Documentation("This service say hello. See http://say.hello")
public interface MyService
  {
  @WebResult(name="helloMessage")
  @Documentation("Returns the hello message")
  public String sayHello();
  }

Thanks in advance,

Pierre

Apache CXF 2.3.0 supports this.

@WSDLDocumentation annotation to add documentation nodes to generated wsdl

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM