0

I have configured in my Spring MVC application Swagger 2 / Springfox. Unfortunately I do not see the description of Javadoc documentation.

Has anyone already successfully used it? Can anyone give me a hint? I know Swagger 1. It takes the documentation, params... from javadoc of the controller

enter image description here

Robert
  • 126
  • 11
  • Take a look at [this](http://stackoverflow.com/questions/32340735/using-javadocs-to-generate-swagger-document) – haihui Mar 09 '16 at 07:13

1 Answers1

1

Add @ApiOperation to the controller method. Here is the wiki.

Shildon
  • 11
  • 5