mybatis:Parameter 'list' not found. Available parameters are [templateId, param1, param2, va

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了mybatis:Parameter 'list' not found. Available parameters are [templateId, param1, param2, va相关的知识,希望对你有一定的参考价值。

我的EsdTemplateSealMapper.java里面定义的接口是这样的

public List<EsdTemplateSeal> getFilteOutSeal(@Param("filterList")List<String> list,@Param("templateId")String templateId);

 然后我的EsdTemplateSealMapper.xml里面的sql是这样的:

<select id="getFilteOutSeal" resultMap="BASE_RESULT_MAP">
        select t.TEMPLATE_ID, t.SEAL_ID, t.SEAL_TYPE, t.DATA_SRC, t.VERSION
        from ESD_TEMPLATE_SEAL t
        where t.TEMPLATE_ID=#{templateId,jdbcType=VARCHAR}
        and t.SEAL_TYPE not in
        <foreach item="item" collection="list" separator="," open="(" close=")" index="">  
          #{0}  
        </foreach>  
</select>

也写过这样的:

<select id="getFilteOutSeal" resultMap="BASE_RESULT_MAP">
        select t.TEMPLATE_ID, t.SEAL_ID, t.SEAL_TYPE, t.DATA_SRC, t.VERSION
        from ESD_TEMPLATE_SEAL t
        where t.TEMPLATE_ID=#{templateId,jdbcType=VARCHAR}
        and t.SEAL_TYPE not in
        <foreach item="item" collection="list" separator="," open="(" close=")" index="">  
          #{filterList}  
        </foreach>  
    </select>

控制台都报类似:“

org.mybatis.spring.MyBatisSystemException: nested exception is org.apache.ibatis.binding.BindingException: Parameter ‘list‘ not found. Available parameters are [templateId, param1, param2, valueList]

”的问题,

最终的解决方案是:

 

以上是关于mybatis:Parameter 'list' not found. Available parameters are [templateId, param1, param2, va的主要内容,如果未能解决你的问题,请参考以下文章

Mybatis异常 org.apache.ibatis.binding.BindingException: Parameter 'storeId' not found. Avail(代

zbb20171215 MyBatis报错: Parameter '*' not found. Available parameters are [1, 0, param1, para

mybatis:Parameter 'list' not found. Available parameters are [templateId, param1, param2, va

MyBatis - Parameter ‘xxx‘ not found. Available parameters are [xxx, param.]

MyBatis - Parameter ‘xxx‘ not found. Available parameters are [xxx, param.]

mybatis多参数查询问题:org.apache.ibatis.binding.BindingException: Parameter 'name' not found. Avail