欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

Java的MyBatis框架中对数据库进行动态SQL查询的教程

程序员文章站 2024-03-09 12:27:23
其实mybatis具有的一个强大的特性之一通常是它的动态 sql 能力。 如果你有使用 jdbc 或其他 相似框架的经验,你就明白要动态的串联 sql 字符串在一起是十分纠...

其实mybatis具有的一个强大的特性之一通常是它的动态 sql 能力。 如果你有使用 jdbc 或其他 相似框架的经验,你就明白要动态的串联 sql 字符串在一起是十分纠结的,确保不能忘了空格或在列表的最后省略逗号。mybatis中的动态 sql 可以彻底处理这种痛苦。对于动态sql,最通俗简单的方法就是我们自己在硬编码的时候赋予各种动态行为的判断,而在mybatis中,用一种强大的动态 sql 语 言来改进这种情形,这种语言可以被用在任意映射的 sql 语句中。动态 sql 元素和使用 jstl 或其他相似的基于 xml 的文本处理器相似。mybatis 采用功能强大的基于 ognl 的表达式来消除其他元素。
我们常用的几个节点元素有if,choose(when, otherwise),trim(where, if),foreach。真正使用下来我感觉有点像xslt(文章后面会顺带提一下~)的用法。
(1)if 的用法

在viisitmapper的分页配置中,如果pageindex>-1 and pagesize>-1的时候就加入相应的分页sql,否则就不添加(默认取全部),如下:

<select id="getlistbypagenate" parametertype="pagenateargs"
  resulttype="visitor">
  select * from (
  <include refid="getlistsql" /> <include refid="orderbysql"/>
  ) t <!-- #{}表示参数化输出,${}表示直接输出不进行任何转义操作,自己进行转移 -->
  <if test="pagestart>-1 and pagesize>-1">
    limit #{pagestart}, #{pagesize}
  </if>
</select>
<sql id="getlistsql">
  select * from visitor where
  status>0
</sql>
<sql id="orderbysql">
  order by ${orderfieldstr} ${orderdirectionstr}
</sql>

  因为我们的参数pageindex与pagesize都是int值所以可以这样直接判断,如果是对象实例我们可以利用null判断来进行一些动态逻辑的控制,具体实际开发中就要看业务需求了。这里我认为要注意的是别十分顺手的吧and写成&&,这个在配置中不会被识别~。

(2)choose (when, otherwise)的用法

  choose when 主要在多个条件的情况下只满足其中一个条件的应用场景中使用,例如这里就构建一个query条件,分别传递id,name与createtime。假设我们查询visitor表时,如果visitorid有值则,使用id查询,如果visitorname有值则采用visitname查询,如下,还是在david.mybatis.demo.ivisitoroperation接口类中添加list<visitor> getlistchoosewhendemo(basicqueryargs args)方法。在visitormapper中添加相应的的select节点配置:

package david.mybatis.demo;

import java.util.list;

import david.mybatis.model.basicqueryargs;
import david.mybatis.model.pagenateargs;
import david.mybatis.model.visitor;
import david.mybatis.model.visitorwithrn;

public interface ivisitoroperation {
  /*
   * 添加访问者
   */
  public int add(visitor visitor);
  
  /*
   * 删除访问者
   */
  public int delete(int id);
  
  /*
   * 更新访问者
   */
  public int update(visitor visitor);
  
  /*
   * 查询访问者
   */
  public visitor query(int id);
  
  /*
   * 查询list
   */
  public list<visitor> getlist();
  
  /*
   * 分页查询list
   */
  public list<visitor> getlistbypagenate(pagenateargs args);
  
  /*
   * 分页查询list(包含rownum)
   */
  public list<visitorwithrn> getlistbypagenatewithrn(pagenateargs args);
  
  /*
   * 基础查询
   */
  public visitor basicquery(int id);
  
  /*
   * 动态条件查询(choose,when)实例
   */
  public list<visitor> getlistchoosewhendemo(basicqueryargs args);
  
  /*
   * 动态条件查询(where,if)实例
   */
  public list<visitor> getlistwheredemo(basicqueryargs args);
  
  /*
   * 动态查询(foreach)实例
   */
  public list<visitor> getlistforeachdemo(list<integer> ids);
  
}

<?xml version="1.0" encoding="utf-8"?>
<!doctype mapper
 public "-//mybatis.org//dtd mapper 3.0//en"
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="david.mybatis.demo.ivisitoroperation">  
  <resultmap type="visitor" id="visitorrs">
    <id column="id" property="id" />
    <result column="name" property="name" />
    <result column="email" property="email" />
    <result column="status" property="status" />
    <result column="createtime" property="createtime" />
  </resultmap>
  <sql id="getlistsqlconditions">
    select * from visitor
  </sql>
  <!-- 满足其中一个条件时候用choose when操作 -->
  <select id="getlistchoosewhendemo" resultmap="visitorrs"
    parametertype="basicqueryargs">
    <include refid="getlistsqlconditions" />
    <where>
      <if test="querystatus>0">
        status=#{querystatus}
      </if>
      <choose>
        <when test="queryid!=0">
          and id=#{queryid}
        </when>
        <when test="queryname!=null">
          and name like #{queryname}
        </when>
        <otherwise>
          and createtime>= #{querytime}
        </otherwise>
      </choose>
    </where>
  </select>
</mapper>

(3)where if (trim)的用法

where关键词的好处是在于,如果有相应的过滤条件的话,它知道在适当的时候插入where关键词。而且它也知道在何时该去掉相应的and与or的连接符,主要应对如下情景

<select id="findactivebloglike"
   resulttype="blog">
 select * from blog
 where
 <if test="state != null">
  state = #{state}
 </if>
 <if test="title != null">
  and title like #{title}
 </if>
 <if test="author != null and author.name != null">
  and author_name like #{author.name}
 </if>
</select>

不会因为所有条件不满足变为

<select id="findactivebloglike"
   resulttype="blog">
 select * from blog
 where
</select>

或者因为没有满足第一个条件,单单满足后面的条件变成

<select id="findactivebloglike"
   resulttype="blog">
  select * from blog
  where
  and title like ‘sometitle'
</select>

所以针对这种我们可以在建立choose when条件示例,同样在ivisitoroperation接口类中加入相应的方法public list<visitor> getlistwheredemo(basicqueryargs args),把visitormapper配置文件中的相对应配置加上去如下:

<?xml version="1.0" encoding="utf-8"?>
<!doctype mapper
 public "-//mybatis.org//dtd mapper 3.0//en"
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="david.mybatis.demo.ivisitoroperation">  
  <sql id="getlistsqlconditions">
    select * from visitor
  </sql>
  <!-- 满足条件的都加上去操作 -->
  <select id="getlistwheredemo" resultmap="visitorrs"
    parametertype="basicqueryargs">
    <include refid="getlistsqlconditions" />
    
    <where> 
      <if test="querystatus>0"> 
        status>0 
      </if> 
      <if test="queryid>0"> 
        and id=#{queryid} 
      </if> 
      <if test="queryname!=null"> 
        and name like=#{queryname} 
      </if> 
      <if test="querytime!=null"> 
        and createtime>=#{querytime} 
      </if>
    </where>
    <!--
    <trim prefix="where" prefixoverrides="and |or ">
      <if test="querystatus>0">
        status>0
      </if>
      <if test="queryid>0">
        and id=#{queryid}
      </if>
      <if test="queryname!=null">
        and name like=#{queryname}
      </if>
      <if test="querytime!=null">
        and createtime>=#{querytime}
      </if>
    </trim>
    -->
  </select>
</mapper>

(4)foreach的用法

在常用的动态sql中我们有个业务场景是要where id in 一大串的id,像这种情况我们就可以用到foreach啦,不必自己辛辛苦苦去拼接id字符串啦。同样的步骤还是在ivisitoroperation接口类中加入相应的方法public list<visitor> getlistforeachdemo(list<integer> ids),然后再对应的mapper文件中配置上相应的节点元素信息,如下:

<?xml version="1.0" encoding="utf-8"?>
<!doctype mapper
 public "-//mybatis.org//dtd mapper 3.0//en"
 "http://mybatis.org/dtd/mybatis-3-mapper.dtd">
<mapper namespace="david.mybatis.demo.ivisitoroperation">  
  <sql id="getlistsqlconditions">
    select * from visitor
  </sql>
  <!-- foreach循环条件 -->
  <select id="getlistforeachdemo" resultmap="visitorrs">
    <include refid="getlistsqlconditions"/>
    where status>0 and id in 
    <foreach collection="list" item="item" index="index" open="(" separator="," close=")">
      ${item}
    </foreach>
  </select>
</mapper>

最后你只需要在demorun中建立相应的测试方法,mybatis里面的动态sql也就完成啦,下面测试用的demorun方法

/*
   * 动态查询foreach实例
   */
  public static void getlistforeachdemo(list<integer> ids) {
    sqlsession session = mybatisutils.getsqlsession();
    ivisitoroperation voperation = session.getmapper(ivisitoroperation.class);
    list<visitor> ls = voperation.getlistforeachdemo(ids);
    for (visitor visitor : ls) {
      system.out.println(visitor);
    }
  }
  
  /*
   * 动态查询where if实例
   */
  public static void getlistwherecondition(int id, string name, date createtime) {
    name = name == "" ? null : name;
    sqlsession session = mybatisutils.getsqlsession();
    basicqueryargs args = new basicqueryargs(id, name, createtime);
    ivisitoroperation voperation = session.getmapper(ivisitoroperation.class);
    list<visitor> ls = voperation.getlistwheredemo(args);
    if (ls.size() == 0)
      system.out.println("查无匹配!");
    else {
      for (visitor visitor : ls) {
        system.out.println(visitor);
      }
    }
  }

  /*
   * 动态查询choose when实例
   */
  public static void getlistchoosewhendemo(int id, string name, date createtime) {
    name = name == "" ? null : name;
    sqlsession session = mybatisutils.getsqlsession();
    basicqueryargs args = new basicqueryargs(id, name, createtime);
    ivisitoroperation voperation = session.getmapper(ivisitoroperation.class);
    list<visitor> ls = voperation.getlistchoosewhendemo(args);
    if (ls.size() == 0)
      system.out.println("查无匹配!");
    else {
      for (visitor visitor : ls) {
        system.out.println(visitor);
      }
    }
  }

Java的MyBatis框架中对数据库进行动态SQL查询的教程   
ps:关于ognl
ognl 是 object-graph navigation language 的缩写,从语言角度来说:它是一个功能强大的表达式语言,用来获取和设置 java 对象的属性 , 它旨在提供一个更高抽象度语法来对 java 对象图进行导航,ognl 在许多的地方都有应用,例如:
作为 gui 元素(textfield,combobox, 等)到模型对象的绑定语言。
数据库表到 swing 的 tablemodel 的数据源语言。
web 组件和后台 model 对象的绑定语言 (webognl,tapestry,webwork,webobjects) 。
作为 jakarata commons beanutils 或者 jstl 的表达式语言的一个更具表达力的替代语言。
另外,java 中很多可以做的事情,也可以使用 ognl 来完成,例如:列表映射和选择。 对于开发者来说,使用 ognl,可以用简洁的语法来完成对 java 对象的导航。通常来说: 通过一个“路径”来完成对象信息的导航,这个“路径”可以是到 java bean 的某个属性,或者集合中的某个索引的对象,等等,而不是直接使用 get 或者 set 方法来完成。