在JME中遇到org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: 问题的解决方法

 

今天根据开发需求,需要在发布后台中创建一个书本,专栏中每本书的章节数需要200个左右,于是我想到了使用Jmeter工具帮助我完成这一任务,可是在实践过程中遇到了很多问题,后来解决了这些问题,因此,记录下这些问题从何而来,如何解决,希望以后不要再犯这种错误~

报错1:

org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unrecognized token 'isListAll': was expecting ('true', 'false' or 'null'); nested exception is com.fasterxml.jackson.core.JsonParseException: Unrecognized token 'isListAll': was expecting ('true', 'false' or 'null')

报错2:

org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unexpected character ('-' (code 45)) in numeric value: expected digit (0-9) to follow minus sign, for valid numeric value; nested exception is com.fasterxml.jackson.core.JsonParseException: Unexpected character ('-' (code 45)) in numeric value: expected digit (0-9) to follow minus sign, for valid numeric value

报错3:

org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: Unexpected character ('%' (code 37)): expected a valid value (number, String, array, object, 'true', 'false' or 'null'); nested exception is com.fasterxml.jackson.core.JsonParseException: Unexpected character ('%' (code 37)): expected a valid value (number, String, array, object, 'true','false' or 'null')

错误原因:

经过百度翻译和在网上查询,问题定位为JSON解析错误,也就是在Http请求中写的参数有问题或者参数在脚本执行时转换有问题

解决方案:

将原来“参数”格式修改为“消息体数据”,如下所示:

1、将接口中POST请求中的Request Payload参数使用 view source模式打开,并在view source模式下的内容

在JME中遇到org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: 问题的解决方法_第1张图片

将复制的内容,填入“消息体数据”底下的空白格中,即可解决这个问题~

在JME中遇到org.springframework.http.converter.HttpMessageNotReadableException: JSON parse error: 问题的解决方法_第2张图片

你可能感兴趣的:(测试基础)