Exercises

Implement the UserHandler and TaskHandler classes, mapping the requests to the following methods:

  • /task/find will map to the TaskHandler.find method using a GET request
  • /task/store will map to the TaskHandler.store method using a POST request
  • /task/findAll will map to the TaskHandler.findAll method using a GET request
  • /task/remove will map to the TaskHandler.remove method using a POST request
  • /user/find will map to the UserHandler.find method using a GET request
  • /user/store will map to the UserHandler.store method using a POST request
  • /user/findAll will map to the UserHandler.findAll method using a GET request
  • /user/remove will map to the UserHandler.remove method using a POST request

Get Enterprise Application Development with Ext JS and Spring now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.