详解mybatis中的if-else的嵌套使用

目录
  • 案例一:if-else
  • 案例二:if嵌套
  • MyBatis中if和choose的嵌套

案例一: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嵌套内容请搜索我们以前的文章或继续浏览下面的相关文章希望大家以后多多支持我们!

(0)

相关推荐

  • mybatis中的if-else及if嵌套使用方式

    目录 if-else及if嵌套使用方式 案例一:if-else 案例二:if嵌套 mybatis if-else写法 if-else及if嵌套使用方式 案例一:if-else 在使用mybatis mapper 动态sql时,不免会出现if-else的使用,但是好像又没有这种语法,提供的是choose标签代替if-else 例如: select * from t_stu t <where>     <choose>         <when test="query

  • 详解Mybatis中的 ${} 和 #{}区别与用法

    Mybatis 的Mapper.xml语句中parameterType向SQL语句传参有两种方式:#{}和${} 我们经常使用的是#{},一般解说是因为这种方式可以防止SQL注入,简单的说#{}这种方式SQL语句是经过预编译的,它是把#{}中间的参数转义成字符串,举个例子: select * from student where student_name = #{name} 预编译后,会动态解析成一个参数标记符?: select * from student where student_name

  • 详解Mybatis中的CRUD

    1.namespace namespace中的包名要和Dao/mapper接口的包名一致! 2. select 选择,查询语句: id:就是对应的namespace中的方法名: resultType: Sql语句执行的返回类型! parameterType:参数类型! 1.编写接口 //根据id查询用户 User getUserById(int id); ​ 2.编写对应的mapper.xml中的sql语句 <select id="getUserById" parameterTy

  • 详解Mybatis中万能的Map和模糊查询写法

    1.万能的Map 假设,我们的实体类,或者数据库中的表,字段或参数过多,我们接口参数以前用的是实体类,现在考虑使用下Map! 接口: //万能的Map int addUser2(Map<String,Object> map); mapper.xml: <!--Map中的key--> <insert id="addUser2" parameterType="map"> insert into mybatis.user (id,nam

  • 详解Mybatis中的PooledDataSource

    目录 前言 PooledConnection PooledDataSource的pushConnection()方法 总结 前言 上篇Java Mybatis数据源之工厂模式文章中我们介绍了Mybatis的数据源模块的DataSource接口和它对应的实现类UnpooledDataSource.PooledDataSource,这篇文章详细介绍一下PooledDataSourcePooledDataSource使用了数据库连接池可以实现数据库连接池的重复利用,还能控制连接数据库的连接上限,实现数

  • 详解mybatis中的if-else的嵌套使用

    目录 案例一:if-else 案例二:if嵌套 MyBatis中if和choose的嵌套 案例一:if-else 在mybatis的使用过程中,难免会存在使用if-else的逻辑,但是实际是没有这种语法的,提供了choose标签来替代这种语法 <select id="selectUserByState" resultType="com.bz.model.entity.User"> SELECT * FROM user WHERE 1=1 <choo

  • 详解MyBatis中主键回填的两种实现方式

    主键回填其实是一个非常常见的需求,特别是在数据添加的过程中,我们经常需要添加完数据之后,需要获取刚刚添加的数据 id,无论是 Jdbc 还是各种各样的数据库框架都对此提供了相关的支持,本文我就来和和大家分享下数据库主键回填在 MyBatis 中的两种实现思路. 原生写法 框架来源于我们学过的基础知识,主键回填实际上是一个在 JDBC 中就被支持的写法,有的小伙伴可能不知道这一点,因此这里我先来说说在 JDBC 中如何实现主键回填. JDBC 中实现主键回填其实非常容易,主要是在构造 Prepar

  • 详解Mybatis中的select方法

    selectById方法 根据id,查询记录 public void updateRecycleAssayBusinessItemCharge(String Id) { AssayBusinessItemCharge assayBusinessItemCharge = assayBusinessItemChargeService.selectById(Id); assayBusinessItemCharge.setRecordStatus(RecordStatusEnum.VALID.getVa

  • 详解Mybatis中常用的约束文件

    SqlMapConfig.xml的约束,也就是Mybatis主配置文件的约束 <?xml version="1.0" encoding="UTF-8"?> <!DOCTYPE configuration PUBLIC "-//mybatis.org//DTD Config 3.0//EN" "http://mybatis.org/dtd/mybatis-3-config.dtd"> 持久层接口映射文件的

  • 详解mybatis中association和collection的column传入多个参数问题

    项目中在使用association和collection实现一对一和一对多关系时需要对关系中结果集进行筛选,如果使用懒加载模式,即联合使用select标签时,主sql和关系映射里的sql是分开的,查询参数传递成为问题. mybatis文档: property description column 数据库的列名或者列标签别名.与传递给resultSet.getString(columnName)的参数名称相同.注意: 在处理组合键时,您可以使用column="{prop1=col1,prop2=c

  • 详解Mybatis是如何把数据库数据封装到对象中的

    一.前言 接到一个问题,数据库为Null的数据,传递到前端显示为0.之前有了解过,持久层框架(mybatis)在把数据库数据封装到对象中,是利用对象的Setter方法,这个大家也都知道,因此我就在Setter方法尝试,结果并不完全是这样.下面我用例子演示. 二.准备阶段 1.数据表 2.表对应的实体类 @Data @ApiModel("用户账号") public class User { @ApiModelProperty(value = "用户id") Integ

随机推荐