1. Statelessness In a very simple word, each request should be sufficient in itself to be understood by the server. In other words, the action to a request should not depend on information provided by any prior request. Each request should be an atomic operation. But why statelessness is a constraint? Because It enables us... Continue Reading →
REST APIs using Dropwizard – Introductory Tutorial
Dropwizard is a popular java framework for restful service. It provides out of the box support for configuration, application metrics, logging and operational tools so the developers focus more on writing business logic and not on set ups. Agenda This tutorial should help you set up your dropwizard project and few APIs. Let's start! Create... Continue Reading →