本文主要是介绍java报错:Type handler was null on parameter mapping for property ‘*‘,jdbcType (null) combination.,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
实体类字段为JSON类型时,必须使用标签进行判定以排除其为null的可能性,否则会报下面的找不到为null时的指定。
Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for
property 'urlParams'. It was either not specified and/or could not be found for the javaType
(com.alibaba.fastjson.JSONObject) : jdbcType (null) combination.
解决方法:在java对应的实体类添加对应的字段,重点是加上(typeHandler = JacksonTypeHandler.class)这个注解
这篇关于java报错:Type handler was null on parameter mapping for property ‘*‘,jdbcType (null) combination.的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!