swagger-maven-plugin
swagger-maven-plugin copied to clipboard
package-private Spring MVC methods are not picked up
Whilst Spring MVC is perfectly happy with a class like:
@RestController
class MyController {
@GetMapping("/my-mapping")
String getMyMapping() {
return ":-)";
}
}
The swagger-maven-plugin only picks up the methods when they are declared as public.
Would be nice to support that. :-)
+1