Swagger with Spring Boot
Swagger For Documenting Rest Endpoints Swagger 2 is an open-source project used to describe and document RESTful APIs We will setup the swagger endpoints for the employee and oauth-client microservices. For more details regarding swagger, please refer to the official website: https://swagger.io/tools/swagger-ui/ The employee microservice and the oauth client setup have been explained in my previous posts. Kindly refer them to setup these applications. Adding maven dependencies < dependency > < groupId > io.springfox </ groupId > < artifactId > springfox-swagger2 </ artifactId > < version > 2.9.2 </ version > </ dependency > < dependency > < groupId > io.springfox </ groupId > < artifactId > springfox-swagger-ui </ artifactId > < version > 2.9.2 </ version > </ dependency > Setting up Swagger configurat...