I get some minor issues using Springfox. I cannot set the name for the @RestController classes.
I am using Spring boot and Swagger2.
The following code will create a controller named "rest-status-controller" in springfox ui. I was expecting "Application Status". Is there any other configuration that I don't know about?
@Api("Application Status") @RestController @RequestMapping("/rest/status") public class RestStatusController { @ApiOperation(value="Get components current status") @RequestMapping(method = RequestMethod.GET, produces=MediaType.APPLICATION_JSON) public String global() {
source share