Hi,
Have a basic GWT app, using
Getting the list of the items is done withCode:persistence setup --provider DATANUCLEUS --database HYPERSONIC_PERSISTENT ... controller all --package ~.web
POST /gwtRequest
with a body such as
{operation: findEmployeesEntries}
I would have expected a
GET /entities/Employees/?page=23
Getting entity details is done similar, with findEmployee operation.
I would have expected a
GET /entities/Employees/14/
Update is done with a similar POST, instead of PUT, and same on DELETE.
Why isn't roo + GWT RESTful?


Reply With Quote