Required String parameter is not present 或 Unsupported Media Type



Required String parameter 'xxxxx'  is not present 


 http://localhost:8094/msp/getMspCs?csdm=TEST
415 (Unsupported Media Type) 


今天 遇到一个奇怪的事件,出现以上错误,我把所有的post改成get,就OK了,原因呢?


原因是由于头文件类型不对,可以在MediaType中选择合适的类型

解决:



@RequestMapping(value = "/t1", method = RequestMethod.POST,consumes = MediaType.APPLICATION_JSON_VALUE )
public String t1(@RequestBody List id);

你可能感兴趣的:(spring,boot,JAVA)