I,m new to spring, I,m writing REST API. I/'m getting 403 forbidden error for delete, put. Following is the sample I'm working on.
@RequestMapping(value = "/{noteId}", method = RequestMethod.PUT) public ResponseEntity noteIdPut( @PathVariable("Id") String Id, Note note) throws Exception { return service.updateNote(Id, note); }