当前位置:   article > 正文

解决JSON parse error:Cannot deserialize instance of `java.lang.Integer` out of VALUE_TRUE token; neste

cannot deserialize instance of `java.lang.integer` out of value_true token

问题
前后端联调的时候出现了以下问题:

JSON parse error:Cannot deserialize instance of `java.lang.Integer` out of VALUE_TRUE token; nested exception is com.fasterxml.jackson.databind.exc.MismatchedInputException:Cannot deserialize instance of `java.lang.Integer` out of VALUE_TRUE token
  • 1

原因
MVC在帮我们自动转换为json格式的时候,默认会把is、no等开头的属性,转成布尔类型。而我在BrandEntity.java中刚好有个属性符合is开头:

private Integer isDeleted;
  • 1

解决办法
在数据库命名的时候,最好不要使用is、no开头来设置,有些第三方会帮你做一些意想不到的事情。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/305398
推荐阅读
相关标签
  

闽ICP备14008679号