Play Framework CRUD

crud, playframework, playframework-2.0, rest

Solution

Are you sure you cannot use DELETE/PUT? The docs say otherwise.

The HTTP method

The HTTP method can be any of the valid methods supported by HTTP (GET, POST, PUT, DELETE, HEAD).

http://www.playframework.org/documentation/2.0.4/JavaRouting

Problem

I wanted to develop a `RESTful` Application with use of `CRUD` in Play framework. Unfortunately I can't find a way to define `DELETE` and `PUT` in the routes of Play. Maybe there is just `POST` and `GET` available in Play?

Original source

Related problems