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
you can add @RestController annotation before your class.
@RestController @RequestMapping(value = "/v1/range") public class RangeRestController { }