当前位置: 移动技术网 > IT编程>开发语言>Java > springmvc之ResponseBody响应json数据遇到的错误及解决

springmvc之ResponseBody响应json数据遇到的错误及解决

2020年07月24日  | 移动技术网IT编程  | 我要评论

使用@RequestBody注解把json的字符串转换成JavaBean的对象

代码实践过程中遇到错误:[http-apr-8080-exec-2] org.springframework.web.servlet.mvc.support.DefaultHandlerExceptionResolver.handleHttpMessageNotReadable Failed to read HTTP message: org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unexpected character (‘ï’ (code 239)): was expecting a colon to separate field name and value; nested exception is com.fasterxml.jackson.core.JsonParseException: Unexpected character (‘ï’ (code 239)): was expecting a colon to separate field name and value
at [Source: (PushbackInputStream); line: 1, column: 13]错误应该是json格式不对
检查一下发现冒号用的是中文,应该改为英文
改正之后成功在这里插入图片描述
总结:代码一定要规范,不要中英文书写错误

本文地址:https://blog.csdn.net/BG12345633/article/details/107533447

如对本文有疑问, 点击进行留言回复!!

相关文章:

验证码:
移动技术网