Am developing an application using Spring boot.I tried with all representations verbs like GET, POST , DELETE all are working fine too. By using PUT method, it\'s not supporting
This code will work fine. You must specify request mapping in class level or in function level.
@RequestMapping(value = "/student/info", method = RequestMethod.PUT) public @ResponseBody String updateStudent(@RequestBody Student student){ LOG.info(student.toString()); return "ok"; }