In this article, we will discuss how to use Swagger 2 for a Spring Boot 2 RESTful API Documentation. For this article, we will use the Springfox implementation of the Swagger 2 specification.
[…]
You can find more detailed about swagger annotations on https://github.com/swagger-api/swagger-core/wiki/annotations
[…]
Let's customizing Swagger by providing information about our API in the Swagger2Config class like this.
[…]
In the code, the RequestHandlerSelectors.basePackage predicate matches the net.guides.springboot2.springboot2swagger2.controller base package to filter the API.
[…]
The Swagger 2-generated documentation now looks similar to this:
[…]
The Swagger 2 generated documentation for Employee is this:
[…]