Post JSON to spring REST webservice

Plain text
Copy to clipboard
Open code in new window
EnlighterJS 3 Syntax Highlighter
@RequestMapping(value = "/", method = RequestMethod.POST)
public ResponseEntity<Car> update(@RequestBody Car car) {
...
}
@RequestMapping(value = "/", method = RequestMethod.POST) public ResponseEntity<Car> update(@RequestBody Car car) { ... }
@RequestMapping(value = "/", method = RequestMethod.POST)
public ResponseEntity<Car> update(@RequestBody Car car) {
    ...
}

References
https://www.leveluplunch.com/java/tutorials/014-post-json-to-spring-rest-webservice/