Parameter ‘id‘ not found. Available parameters are [collection, list]

简介: Parameter ‘id‘ not found. Available parameters are [collection, list]

Parameter ‘id’ not found. Available parameters are [collection, list]


我这边报错是sql写的有问题:


换成下面的就OK;


<!--<insert id="addOnce" parameterType="com.example.democrud.democurd.pojo.userdemo">
      insert  into user
      <trim prefix="(" suffix=")" suffixOverrides="," >
          <if test="id != null" >
              id,
          </if>
          <if test="name != null" >
              name,
          </if>
          <if test="age != null" >
              age,
          </if>
          <if test="password != null" >
              password,
          </if>
          <if test="newdate != null" >
              newdate,
          </if>
      </trim>
      <trim prefix="values (" suffix=")" suffixOverrides="," >
          <if test="id != null" >
              #{id,jdbcType=VARCHAR},
          </if>
          <if test="name != null" >
              #{name,jdbcType=VARCHAR},
          </if>
          <if test="age != null" >
              #{age,,jdbcType=VARCHAR},
          </if>
          <if test="password != null" >
              #{password,jdbcType=VARCHAR},
          </if>
          <if test="newdate != null" >
              #{newdate,jdbcType=DATE},
          </if>
      </trim>
  </insert>-->
    <insert id="addOnce" parameterType="int">
        insert into user (id,name,age,password,newdate)
        values
        <foreach collection="list" item="item" separator=",">
            (
            #{item.id}, #{item.name},#{item.age},#{item.password},#{item.newdate}
            )
        </foreach>
    </insert>
目录
打赏
0
0
0
0
42
分享
相关文章
|
4月前
|
你对Collection中Set、List、Map理解?
你对Collection中Set、List、Map理解?
94 18
你对Collection中Set、List、Map理解?
|
7月前
|
你对Collection中Set、List、Map理解?
你对Collection中Set、List、Map理解?
61 5
java集合框架------Collection接口,List接口与实现类,Set接口与实现类
java集合框架------Collection接口,List接口与实现类,Set接口与实现类
110 0
|
11月前
|
List转Map(id为key,list为value)
List转Map(id为key,list为value)
353 0
|
11月前
Cause: java.sql.SQLIntegrityConstraintViolationException: Column ‘id‘ in field list is ambiguous
Cause: java.sql.SQLIntegrityConstraintViolationException: Column ‘id‘ in field list is ambiguous
362 0
<foreach>元素中collection=list改成collection=array
<foreach>元素中collection=list改成collection=array
从零开始学习 Java:简单易懂的入门指南之Collection集合及list集合(二十一)
从零开始学习 Java:简单易懂的入门指南之Collection集合及list集合(二十一)
【Java 集合框架API接口】Collection,List,Set,Map,Queue,Deque
【Java 集合框架API接口】Collection,List,Set,Map,Queue,Deque
164 0
|
11月前
|
MyBatis【问题 01】mapper传入array\collection\list类型的参数时报BindingException:Parameter ‘xx‘ not found问题复现及解决
MyBatis【问题 01】mapper传入array\collection\list类型的参数时报BindingException:Parameter ‘xx‘ not found问题复现及解决
281 0