记录开发过程中遇到的问题:
在spring boot项目中,查询类中只有一个变量,在该类中创建有参构造函数,和get方法,接口测试时,返回“org.springframework.http.converter.HttpMessageNotReadableException:Cannot construct instance of `com.*` (although at least one Creator exists): cannot deserialize”
1)尝试引用 @Builder @NoArgsConstructor @AllArgsConstructor 没有作用
2)引用 @NoArgsConstructor 时,需要注释掉已经创建的有参构造函数,接口测试传入参数值时,后端接收为null,程序可以执行,但是参数没起作用文章来源:https://www.toymoban.com/news/detail-504455.html
解决:在查询类中创建大于1个查询字段,并创建有参构造函数和get方法,启动程序,进行接口测试,传入参数,返回结果正确。文章来源地址https://www.toymoban.com/news/detail-504455.html
到了这里,关于【已解决】“org.springframework.http.converter.HttpMessageNotReadableException: JSON解析错误“的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!