Tagged: java rest api

2

Building a REST API in Play Framework

When building web applications, REST has become the most widely used approach because it is easy to use and easy to implement. In this tutorial I will be showing how to build a simple REST API in Play Framework and will cover the 4 basic functionalities: Create – POST Update – PUT Retrieve – GET Remove – DELETE We will be creating a simple API for a student’s management software where we can manipulate the students and retrieve the stored...