Test REST API using Java / Jersey, runs an embedded Grizzly web server.
Starts up on http://localhost:8080/tasker
GET /tasks
GET /tasks/{key}
POST /tasks/{key}
{
"body": "Another Body",
"title": "Hello World"
}
PUT /tasks/{key}
{
"body": "Another Body",
"title": "Hello World",
"done": true
}
DELETE /tasks/{key}
GET /tasks/search?query={query}