转:mybatis if test 不为空字符串或null

发布时间:2024-11-18 14:07

数字编码,将数字转化为有意义的符号 #生活技巧# #学习技巧# #高效记忆法#

最新推荐文章于 2024-10-06 14:03:17 发布

xiaoniuxqq 于 2018-12-10 22:28:38 发布

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。

<sql id="public_content"><if test="productId != null and productId !=''" > and a.product_id = #{productId,jdbcType=VARCHAR} </if> <if test="productDefinId != null" > and a.product_defin_id = #{productDefinId,jdbcType=VARCHAR} </if> <if test="productUid != null and productUid !=''"> and a.product_uid = #{productUid,jdbcType=VARCHAR} </if> <if test="productKey != null" > and a.product_key = #{productKey,jdbcType=VARCHAR} </if> <if test="prouuctSecret != null" > and a.prouuct_secret = #{prouuctSecret,jdbcType=VARCHAR} </if> <if test="productPass != null" > and a.product_pass = #{productPass,jdbcType=VARCHAR} </if> <if test="productVisitPass != null" > and a.product_visit_pass = #{productVisitPass,jdbcType=VARCHAR} </if> <if test="createTime != null and createTime !=''" > and a.create_time = #{createTime,jdbcType=VARCHAR} </if> <if test="pageSize != null and pageNum !=null " > ORDER BY a.product_id DESC limit #{pageNum},#{pageSize} </if> </sql>

1234567891011121314151617181920212223242526272829

注意如果传入的参数是多个对象参数,就不能在test中直接使用对象属性作为判断,要对参数命名,例如:

接口-->ObjectX getByNameAndVersion(@Param("obj1") Object1 obj1,@Param("obj2") Object2 obj2); select语句--><select id="id" resultMap="baseMap"> select * from xxx <where><if test="obj1.name!=null>name=#{obj1.name}</if><if test="obj2.version!=null">version=#{obj2.version}</if> </where> 1234567891011

网址:转:mybatis if test 不为空字符串或null https://www.yuejiaxmz.com/news/view/120491

相关内容

java字符串转map
Java解决if(!=null)臭名昭著的判空处理(Optional)
Python中if
用PHP中的 == 运算符进行字符串比较
288基于java ssm springboot摄影作品分享系统摄影教程(源码+文档+运行视频+讲解视频)
基于SpringBoot+Vue+uniapp的家庭财务管理系统(源码+lw+部署文档+讲解等)
为什么Java中“1000==1000”为false,而”100==100“为true?
260java ssm springboot基于uniapp微信小程序的家政服务平台系统服务评价(源码+文档+运行视频+讲解视频)
259java ssm springboot基于uniapp微信小程序的家政服务预约管理系统上门服务(源码+文档+运行视频+讲解视频)
【Java数据结构】字符串常量池

随便看看