首頁 > 軟體

mybatis中的mapper.xml使用迴圈語句

2022-02-08 13:01:59

mapper.xml使用迴圈語句

mapper.java,傳的引數是map

List<實體類> getList(Map<String,Object> paraMap);

mapper.xml

<!--select:對應sql的select語句, id:方法名,parameterType:引數型別,resultMap:返回物件型別(BaseResultMap:標籤-->
<!--<resultMap id="BaseResultMap" type="實體類包路徑"> 實體類的對映 不改的話一般都是這個名字)-->
<select id="getList" parameterType="java.util.Map" resultMap="BaseResultMap">
  select * from table where 
  <!-- 判斷-->
  <if test="a!= null">
      a = #{a,jdbcType=VARCHAR}
  </if>
  <if test="list!= null">
    and id in
    <!-- for迴圈, item:迴圈後的值, index:迴圈下標列式for迴圈的 i ,collection:引數名-->
    <!-- open="(" close=")" separator="," 就是把迴圈的值組成 (item1,item2,item3)的格式-->
    <foreach item="item" index="index" collection="list" open="(" close=")" separator=",">
     #{item}
    </foreach>
  </if>
</select>

引數,陣列,list都行

Map<String,Object> map = new HashMap<String, Object>();
map.put("a","引數");
map.put("list",陣列、List都行)
List<實體類> list = mapper.getList(map);

mybatis xml迴圈語句

MyBatis很好的支援批次插入,使用foreach即可滿足

首先建立DAO方法

package com.youkeda.comment.dao;
import com.youkeda.comment.dataobject.UserDO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.time.LocalDateTime;
import java.util.List;
@Mapper
public interface UserDAO {
    int batchAdd(@Param("list") List<UserDO> userDOs);
}
<insert id="batchAdd" parameterType="java.util.List" useGeneratedKeys="true" keyProperty="id">
    INSERT INTO user (user_name, pwd, nick_name,avatar,gmt_created,gmt_modified)
    VALUES
    <foreach collection="list" item="it" index="index" separator =",">
        (#{it.userName}, #{it.pwd}, #{it.nickName}, #{it.avatar},now(),now())
    </foreach >
</insert>

foreach相當於執行力java的for迴圈,他的屬性:

  • collection指定集合的上下文引數名稱比如這裡的@Param("list")
  • item指定遍歷的每一個資料的變數,一般叫it,可以使用it.userName來獲取具體的值
  • index集合的索引值,從0開始
  • separator遍歷每條記錄並新增分隔符

除了批次插入,使用SQL in查詢多個使用者時也會使用

package com.youkeda.comment.dao;
import com.youkeda.comment.dataobject.UserDO;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.time.LocalDateTime;
import java.util.List;
@Mapper
public interface UserDAO {
    List<UserDO> findByIds(@Param("ids") List<Long> ids);
}
<select id="findByIds" resultMap="userResultMap">
    select * from user
    <where>
        id in
        <foreach item="item" index="index" collection="ids"
                    open="(" separator="," close=")">
            #{item}
        </foreach>
    </where>
</select>
  • open

表示的是節點開始時自定義的分隔符

  • close

表示是節點結束時自定義的分隔符

執行後會變成:

select * from user where id in (?,?,?)

以上為個人經驗,希望能給大家一個參考,也希望大家多多支援it145.com。


IT145.com E-mail:sddin#qq.com