详解mybatis中的if-else的嵌套使用
案例一:if-else
在mybatis的使用过程中,难免会存在使用if-else的逻辑,但是实际是没有这种语法的,提供了choose标签来替代这种语法
<select id="selectUserByState" resultType="com.bz.model.entity.User"> SELECT * FROM user WHERE 1=1 <choose> <when test="state == 1"> AND name = #{name1} </when> <when test="state == 2"> AND name = #{name2} </when> <otherwise> AND name = #{name3} </otherwise> </choose> </select>
案例二:if嵌套
在实际的编码过程中会对一些条件进行重复判断,并对内深入if判断,这时就可以使用if嵌套
<select id="selectUserByState" resultType="com.bz.model.entity.User"> SELECT * FROM user WHERE <if test=" gender!=null and gender!='' "> <if test=" gender==male "> and name=#{name} </if> </if> </select>
MyBatis中if和choose的嵌套
<!-- public List<VadtaxShow> findList(VadtaxShow vadtaxShow); --> <select id="findList" parameterType="com.cdqyzj_WC.Backstage.vaddedtax.domain.VaddeTax" resultType="com.cdqyzj_WC.Backstage.vaddedtax.domain.VaddeTax"> SELECT t.addedId,t.taxType,t.totalSales,t.outputTax,t.inputTax,t.entryAmount, t.amountTax,t.retentionTax, t.createTime, t.taxTime,t.comId,c.comName,c.comType FROM t_g_vaddedtax AS t JOIN t_ucompany AS c ON c.comId = t.comId <where> 1=1 <if test="comType != '' and comType != null"> and c.comType = #{comType}</if> <if test="taxTime != null and taxTime != ''"> and t.taxTime =#{taxTime} </if> <if test="taxType != null and taxType != '' "> and t.taxType =#{taxType} </if> <if test="comId != null and comId != '' and comId != 0 "> and t.comId =#{comId} </if> <if test="start_times != null and end_times != null"> <choose> <when test="middle_times != null"> and t.createTime in ('${start_times}','${middle_times}', '${end_times}' ) </when> <otherwise> and t.createTime in ('${start_times}','${end_times}' ) </otherwise> </choose> </if> <if test="orderBy != null and orderType != '' "> order by ${orderBy} ${orderType} </if> <if test="pageSize != 0 "> limit ${startRows},${pageSize} </if> </where> </select>
功能实现之后反思:要不我不对“middle_times”判空?这样不就不用嵌套了吗?
<!-- public List<VadtaxShow> findList(VadtaxShow vadtaxShow); --> <select id="findList" parameterType="com.cdqyzj_WC.Backstage.vaddedtax.domain.VaddeTax" resultType="com.cdqyzj_WC.Backstage.vaddedtax.domain.VaddeTax"> SELECT t.addedId,t.taxType,t.totalSales,t.outputTax,t.inputTax,t.entryAmount, t.amountTax,t.retentionTax, t.createTime, t.taxTime,t.comId,c.comName,c.comType FROM t_g_vaddedtax AS t JOIN t_ucompany AS c ON c.comId = t.comId <where> 1=1 <if test="comType != '' and comType != null"> and c.comType = #{comType}</if> <if test="taxTime != null and taxTime != ''"> and t.taxTime =#{taxTime} </if> <if test="taxType != null and taxType != '' "> and t.taxType =#{taxType} </if> <if test="comId != null and comId != '' and comId != 0 "> and t.comId =#{comId} </if> <if test="start_times != null and end_times != null"> and t.createTime in ('${start_times}','${middle_times}', '${end_times}' ) </if> <if test="orderBy != null and orderType != '' "> order by ${orderBy} ${orderType} </if> <if test="pageSize != 0 "> limit ${startRows},${pageSize} </if> </where> </select>
到此这篇关于详解mybatis中的if-else的嵌套使用的文章就介绍到这了,更多相关mybatis if-else嵌套内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!
相关文章
@CacheEvict中的allEntries与beforeInvocation的区别说明
这篇文章主要介绍了@CacheEvict中的allEntries与beforeInvocation的区别说明,具有很好的参考价值,希望对大家有所帮助。如有错误或未考虑完全的地方,望不吝赐教2021-12-12Servlet+MyBatis项目转Spring Cloud微服务,多数据源配置修改建议
今天小编就为大家分享一篇关于Servlet+MyBatis项目转Spring Cloud微服务,多数据源配置修改建议,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧2019-01-01Java SpringBoot详解集成以及配置Swagger流程
Swagger 是一个规范和完整的框架,用于生成、描述、调用和可视化 RESTful 风格的 Web 服务。总体目标是使客户端和文件系统作为服务器以同样的速度来更新。文件的方法,参数和模型紧密集成到服务器端的代码,允许API来始终保持同步2021-10-10使用Spring Boot+MyBatis框架做查询操作的示例代码
这篇文章主要介绍了使用Spring Boot+MyBatis框架做查询操作的示例代码,小编觉得挺不错的,现在分享给大家,也给大家做个参考。一起跟随小编过来看看吧2018-10-10xxl-job定时任务配置应用及添加到springboot项目中实现动态API调用
XXL-JOB是一个分布式任务调度平台,其核心设计目标是开发迅速、学习简单、轻量级、易扩展,本篇文章主要是对xuxueli的xxl-job做一个简单的配置,以及将其添加到自己已有的项目中进行api调用,感兴趣的朋友跟随小编一起看看吧2024-04-04
最新评论