@RequestMapping(value = "/enumType/importData",method = RequestMethod.POST, produces = "text/html;charset=UTF-8")
@ResponseBody
public String importData(HttpServletRequest request,
@RequestParam("enumId") Long enumId)
{
return mapper.writeValueAsString(dataMap);
}
// 运行之后,出现如下错误信息: org.springframework.web.HttpMediaTypeNotAcceptableException: Could not find acceptable representatio
// 这是由于 produces 参数配置错误造成的,本意是想返回 json 格式数据,而header确配置成了 text/html 格式,所以出错了。
// 改成 json 格式的 header 就可以了。
@RequestMapping(value = "/enumType/importData",method = RequestMethod.POST, produces = "text/html;charset=UTF-8")