mybatis中的mapper.xml使用循环语句
作者:代码搬晕工 时间:2022-02-06 22:23:13
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 (?,?,?)
来源:https://blog.csdn.net/qq_30059235/article/details/72473942
标签:mybatis,mapper.xml,循环语句
0
投稿
猜你喜欢
C#实现跨线程操作控件方法
2023-06-30 13:47:39
基于Flutter制作一个心碎动画特效
2023-05-27 06:07:47
C# 实现绘制PDF嵌套表格案例详解
2023-05-25 11:57:13
关于weblogic部署Java项目的包冲突问题的解决
2023-07-19 19:02:59
一篇文章带你搞定SpringBoot不重启项目实现修改静态资源
2021-06-03 03:16:41
java自动生成编号的实现(格式:yyMM+四位流水号)
2023-10-10 09:24:36
SpringBoot打包发布到linux上(centos 7)的步骤
2023-08-11 06:35:55
spring scheduled单线程和多线程使用过程中的大坑
2022-09-24 05:51:10
DataTables List互相转换的实现类示例
2023-04-06 07:24:05
Spring Boot mybatis-config 和 log4j 输出sql 日志的方式
2021-05-31 22:13:20
Java Swing程序设计实战
2023-04-09 07:05:42
用Java实现24点游戏
2022-07-18 20:56:14
Android启动优化之延时加载的步骤详解
2023-07-10 20:43:41
使用Feign传递请求头信息(Finchley版本)
2023-06-07 22:38:07
C++ Opencv实现录制九宫格视频
2023-08-16 04:11:28
android APP登陆页面适配的实现
2022-08-27 17:55:57
java实现解析二进制文件的方法(字符串、图片)
2023-04-18 19:07:51
Java解压zip文件的关键代码
2023-05-11 18:28:34
详解如何将JAVA程序制作成可以直接执行的exe文件
2023-11-23 21:12:40
java 正则,object中两个方法的使用(详解)
2023-09-06 19:00:55