Have used springfox dependencies in my spring boot application to show up swagger ui. Used annotation like @SwaggerDefinition
and @EnableSwagger2
.
But they are not generating any html's or json/yaml or any client code. So i used plugin found at : https://github.com/kongchen/swagger-maven-example
<plugin>
<groupId>com.github.kongchen</groupId>
<artifactId>swagger-maven-plugin</artifactId>
......
</plugin>
But they are not helping either, i guess they are scanning for all @Api class in entire package to generate json, but i have none.
Any suggestions please ?