RESTful Services with SpringMVC (tested with Mockito)

Sample project that covers the following concepts:

REST Endpoints

We try to follow well-accepted REST principles with these examples. All operations performed on this user entity are through the same endpoint and use the request method as a determiner for the service to call...

If an endpoint is triggered that does not have a mapping, the DefaultController will respond with an error.

Usage

See org.royrusso.mvc.controller.UserController for more REST endpoints.