Create Swagger Documentation for REST API

Nowadays, with the proliferation of REST APIs, automating the process of documenting them has become important to: What is Swagger? Swagger is an open source framework used to design, document and test a RESTful API. It allows developers to create interactive API documentation that describes the various endpoints, parameters, and responses of an API. With … Read more

Create a microservice using Spring Boot

In this article we will cover the steps required to create a microservice using Spring Boot, deploy it to the Apache Tomcat server and access the endpoints using a REST client. In the example we will develop a service that exposes a POST operation which will allow registering clients, and a GET operation that will … Read more