Mybatis自定义SQL更新JSON字段抛错

China☆狼群 提交于 2020-02-27 13:28:41

### Cause: java.lang.IllegalStateException: Type handler was null on parameter mapping for property 'carouselPic'. It was either not specified and/or could not be found for the javaType ([Ljava.lang.String;) : jdbcType (VARCHAR) combination.] with root cause
java.lang.IllegalStateException: Type handler was null on parameter mapping for property 'carouselPic'. It was either not specified and/or could not be found for the javaType ([Ljava.lang.String;) : jdbcType (VARCHAR) combination.     
 

  UPDATE mf_shopping.product
        <set>
            <if test="visitsNum != null">
                VISITS_NUM = #{visitsNum},
            </if>
            <if test="carouselPic != null">
                CAROUSEL_PIC = #{carouselPic},
            </if>
        </set>
        WHERE ID = #{id}

其中CAROUSEL_PIC字段类型为JSON,修改如下即可解决

CAROUSEL_PIC = #{carouselPic,jdbcType=VARCHAR,typeHandler=com.baomidou.mybatisplus.extension.handlers.JacksonTypeHandler},

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!