Like the title says: Is it possible to export my javadoc comments for web service method parameters into the wsdl? We're using CXF and the java2ws goal with maven to generate the wsdl from source code.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
You can use the |
|||
|
|
org.apache.cxf.jaxrs.ext.Descriptionand it shows up in the generated WADL. – Qwerky Nov 25 '11 at 9:42@WSDLDocumentationannotation but that's not good enough. If there's a method with more than one or two parameters or a constructor that has to be used to create the parameters one description for the entire method won't be enough. I'd like to have the javadocs available so the developer using the webservice knows how to build the objects that the service expects. – Pete Nov 25 '11 at 10:56