当前位置: 首页 > article >正文

mybatis中判断传入的数组与集合是否为空

数组判空

传过来的数组 object[] ,在mapper中判空时先判断是否为null,再判断数组长度 object.length是否大于0.

你的逻辑sql

集合判空

比如参数为List集合,在mybatis中先判断是否为null,不为null再判断集合的长度 object.size() 是否大于0即可。

<if test=" object != null and object.size() > 0">
	你的逻辑sql
</if>

不为空循环 使用forech

foreach
如果​​​​​​​collection的类型为List
List getUserInfo(@Param(“userName”) List userName);
使用@Param注解自定义keyName;

<if test="userName!= null and userName.size() >0">
	   USERNAME IN
	   <foreach collection="userName" item="value" separator="," open="(" close=")">
	        #{value}
	   </foreach>
 </if>

也可以使用默认属性值list作为keyname

<select id="selectByIds" resultType="com.olive.pojo.User">
        select * from t_user where id in
        <foreach collection="list" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
</select>

如果collection的属性为array
List getUserInfo(@Param(“userName”) String[] userName);
使用@Param注解自定义keyName;

SELECT * FROM user_info where USERNAME IN #{value}

也可以,使用默认属性值array作为keyname

<select id="selectByIds" resultType="com.olive.pojo.User">
        select * from t_user where id in
        <foreach collection="array" index="index" item="item" open="(" separator="," close=")">
            #{item}
        </foreach>
    </select>

如果collection的属性为Map
List getUserInfo(@Param(“user”) Map<String,String> user);

第一种:获取Map的键值对

多字段组合条件情况下,一定要注意书写格式:括号()

eg: SELECT * FROM user_info WHERE (USERNAME,AGE) IN (('张三','26'),('李四','58'),('王五','27'),......);
 <select id="getUserInfo" resultType="com.test.UserList">
	        SELECT
	        	*
	        FROM user_info
	        where
	        <if test="user!= null and user.size() >0">
	            (USERNAME,AGE) IN
	            <foreach collection="user.entrySet()" item="value" index="key" separator="," open="(" close=")">
	                (#{key},#{value})
	            </foreach>
	        </if>
</select>

第二种:参数Map类型,只需要获取key值或者value值

key:

 <select id="getUserInfo" resultType="com.test.UserList">
	        SELECT
	        	*
	        FROM user_info
	        where
	        <if test="user!= null and user.size() >0">
	            (USERNAME) IN
	            <foreach collection="user.keys" item="key"  separator="," open="(" close=")">
	                #{key}
	            </foreach>
	        </if>
</select>

value:

	 <select id="getUserInfo" resultType="com.test.UserList">
	        SELECT
	        	*
	        FROM user_info
	        where
	        <if test="user!= null and user.size() >0">
	            (USERNAME) IN
	            <foreach collection="user.values" item="value"  separator="," open="(" close=")">
	                #{key}
	            </foreach>
	        </if>
</select>

http://www.kler.cn/a/5984.html

相关文章:

  • 【LeetCode Hot100 贪心算法】 买卖股票的最佳时机、跳跃游戏、划分字母区间
  • 《解锁计算机视觉智慧:编程实现图片场景文字描述的开源宝藏》
  • VSCode Live Server 插件安装和使用
  • JVM 优化指南
  • 【gRPC】Keepalive连接保活配置,go案例
  • 什么是cline?
  • pyinotify 模块来实现对文件的监控
  • GNU-Radio简介
  • npx 使用教程
  • 二叉搜索树——C语言描述——创建,查找,增加,删除结点
  • 日结(3.26
  • 基于chatGPT插件开发
  • C的实用笔记36——几种常用的字符串处理API(一)
  • 当营养遇上肠道菌群:探究其对儿童健康的影响
  • STM32基于STM32CubeMX硬件I2C驱动MPU6050读取数据
  • vue尚品汇商城项目-day01【6.Footer组件的显示与隐藏】
  • C++基础学习笔记(六)——提高编程PART1
  • Lamda表达式
  • 减肥注意事项
  • 对于Redis的学习-Redis的数据结构
  • 【Go进阶】一篇文章带你了解 — 方法
  • 信息系统项目管理师第四版知识摘编:第17章 项目干系人管理​
  • PCB模块化设计14——MIPI模块PCB布局布线设计规范
  • rhel8/CentOS8/7 系统yum安装出现“未找到匹配的参数”、“没有可用软件包”错误的解决办法
  • ab性能测试工具的安装与使用
  • 留言板系统的设计与实现_kaic