IT Nursery
DELETE is supposed to be idempotent. If I DELETE http://example.com/account/123 it’s going to delete the account. If I do it again would I expect a 404, since the account...
  • May 31, 2022
  • 0 Comments
IT Nursery
Here is my code, $url="url_to_post"; $data = array( "first_name" => "First name", "last_name" => "last name", "email"=>"email@gmail.com", "addresses" => array ( "address1" => "some address", "city" => "city", "country"...
  • May 31, 2022
  • 0 Comments
IT Nursery
With Spring 3.0, can I have an optional path variable? For example @RequestMapping(value = "/json/{type}", method = RequestMethod.GET) public @ResponseBody TestBean testAjax( HttpServletRequest req, @PathVariable String type, @RequestParam("track") String...
  • May 30, 2022
  • 0 Comments
Why is there a need to define a new method in RESTful controller, follow it up with a create method? Google search didn’t provide me the answer I was...
  • May 29, 2022
  • 0 Comments