Play in Action – Building REST Services
Using the Play framework to create controllers and REST services.
Join the DZone community and get the full member experience.
Join For FreeIn this article, we will try to build REST services. To build REST services, first we need to create a controller and actions. In Play we can create controllers by extending play.mvc.Controller. The methods in the controller which will take user requests are called as “actions”. The action method signature is shown below:
public Result <action_name> (parameters)
Here, action returns play.mvc.Result. Play has implementations for Result, which we can return from the action method. Below are the out of the box implementations for Result:
ok --> HTTP status code is 200
notFound --> HTTP status code is 404
badRequest --> HTTP status code is 400
internalServerError --> HTTP status code is 500
movedPermanently 301 --> HTTP status code is 301
found --> HTTP status code is 302
temporaryRedirect--> HTTP status code is 307
forbidden--> HTTP status code is 403
status --> Developer can return any HTTP status code
Now, we will see a different implementation of actions:
The routes file entry is given below:
We can send query parameters to the action. The implementation is explained below:
The routes file entry is given below:
Now, we will see how the POST action is implemented:
Now, let us see the routes file entry to handle the above request:
The source code created to explain the above example is available on GitHub. In an upcoming article we will see how to integrate Play with MySQL. Till then, "Stay Hungry To Learn".
Opinions expressed by DZone contributors are their own.
Comments