1
@RequestMapping(method = RequestMethod.POST, consumes = "application/json", produces = "application/json")
@ResponseBody
public DealerData createData(@RequestBody Data data) {
return data;
}
當我將json傳入函數時,我得到此異常。Spring批註@Request映射在解析json時拋出錯誤
Exception: org.springframework.web.HttpMediaTypeNotAcceptableException
任何幫助,將不勝感激
我錯過了我的Getter和Setter。 – user1733735