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

MyBatis -- 必知必会

程序员文章站 2022-04-14 18:26:12
总结了当前比较火的持久层框架MyBatis的常用知识点,文中以示例代码居多. 有一些可以直接复制到编码环境中使用. ......

  mybatis的前身是apache的一个开源项目ibatis,2010年这个项目由apache software foundation 迁移到了google code,并且改名为mybatis。2013年11月迁移到github,因此目前mybatis是由github维护的。

同样作为持久层框架的hibernate在前些年非常的火,它在配置了映射文件和数据库连接文件后就可以通过session操作,它甚至提供了hql去操作pojo进而操作数据库的数据,几乎可以使编程人员脱离sql语言。可是为什么mybatis却越来越受欢迎呢?我们稍稍总结如下:

hibernate: 1.不方便的全表映射,比如更新时需要发送所有的字段;

2.无法根据不同的条件组装不同sql;

3.对多表关联和复制sql查询支持较差;

4.有hql但性能较差,做不到sql优化;

5.不能有效支持存储过程;

​   在当今的大型互联网中,灵活、sql优化,减少数据的传递是最基本的优化方法,但是hibernate却无法满足我们的需求,而mybatis提供了更灵活、更方便的方法。在mybatis里,我们需要自己编写sql,虽然比hibernate配置要多,但是是mybatis可以配置动态sql,也可以优化sql,且支持存储过程,mybatis几乎能做到 jdbc 所能做到的所有事情!凭借其高度灵活、可优化、易维护等特点,成为目前大型移动互联网项目的首选框架。

二:开发环境、流程及生命周期

1.开发环境

1.1 导入依赖jar包

  • 导入mybatis的jar包,如果采用maven进行部署,只需导入mybatis坐标。

  • 导入数据库驱动jar包或坐标。

  • 代码调试阶段可导入日志工具jar包或坐标,如log4j。

  • 导入junit单元测试坐标。

1.2 创建mybatis的主配置文件

在resources目录下建立一个名字为mybatis-config.xml(名称随意)配置文件,编写所需配置信息。

1.3 准备实体类和表结构

遵循开发规范:

  • 类属性命名尽量和表字段保持一致。

  • 实体类实现序列化接口。

  • 实体类属性使用包装类型定义,如integer。

    tips: 有时可以考虑通过定义时初始化来避免可能的空指针异常!

    如:private list<string> list = new arraylist<>() ;

1.4 创建mapper接口(dao接口)建立接口方法和sql映射文件

创建mapper接口,在内定义crud方法。

**tips:** 方法名唯一,需要在对应的mapper.xml文件中配置id。

在resources下创建sql映射文件。

**tips:** 同对应的mapper接口保持包结构及命名一致。

如:mapper接口: cn.dintalk.dao.usermapper

对应配置文件:cn.dintalk.dao.usermapper.xml

1.5 将映射文件加入到mybatis主配置文件中

将映射文件通过引入的方式加入到mybatis的主配置文件中。

 tips: 所有映射文件会随主配置文件在程序运行时加入内存,任一映射文件出 错都会导致整个环境报错!(初学者经常搞混resulttype和resultmap)。

1.6 编写代码进行crud操作

在映射文件中编写sql进行crud操作,在单元测试中,或service层中调用方法!

2.开发流程

环境搭建好后开发基本流程为:

  • 接口定义方法 。

  • mapper.xml文件中编写sql。

  • 单元测试或service调用。

tips: 接口中方法名称和mapper.xml文件中sql语句的id保持一致!

3.生命周期

mybatis的核心组件:

  • sqlsessionfactorybuilder(构造器):根据配置信息或代码生成sqlsessionfactory

  • sqlsessionfactory(工厂接口):依靠工厂来生成sqlsession(会话)。

  • sqlsession(会话): 既可以发生sql去执行并返回结果,也可以获取mapper的接口

  • sql mapper:它是mybatis新设计的组件,它是由一个java接口和xml文件(或注解)构成的,需要给出对应的sql和映射规则。它负责发送sql去执行,并返回结果。

    正确理解并掌握上述核心组件的生命周期可以让我们写出高效的程序,还可避免带来严重的并发问题。

3.1 sqlsessionfactorybuilder

其作用就是利用xml或java编码获得资源来构建sqlsessionfactory对象,构建成功就失去了存在的意义,将其回收。所以它的生命周期只存在于方法的局部。

3.2 sqlsessionfactory

sqlsessionfactory的作用是创建sqlsession,而sqlsession就是一个会话,相当于jdbc中的connection对象,每次访问数据库都需要通过sqlsessionfactory创建sqlsession,所以sqlsessionfactory应该在mybatis应用的整个生命周期中。我们使每一个数据库只对应一个sqlsessionfactory(单例模式)。

3.3 sqlsession

sqlsession是一个会话,相当于jdbc的一个connection对象,它的生命周期应该是在请求数据库处理事务的过程中。是一个线程不安全的对象,涉及多线程时格外当心。此外,每次创建的sqlsession都必须及时关闭它。

3.4 mapper

mapper是一个接口,没有任何实现类,其作用是发送sql,返回我们需要的结果,或者执行sql修改数据库数据,因此它也因该在一个sqlsession事务方法之内,是一个方法级别的东西。就如同 jdbc中的一条sql语句的执行,它的最大范围和sqlsession是相同的。

tips: 根据核心组件封装工具、形成sqlsession使用模板
 1 public class mybatisutil {
 2     private static sqlsessionfactory build =null;
 3     static {
 4         try {  //使用mybatis的resources加载资源获得输入流,构建工厂
 5             inputstream inputstream = resources.getresourceasstream("mybatis-config.xml");
 6             build = new sqlsessionfactorybuilder().build(inputstream);
 7         } catch (ioexception e) {
 8             throw new runtimeexception("资源文件加载失败!");
 9         }
10     }
11     //使用工厂生产sqlsession 
12     public static sqlsession opensession(){
13         return build.opensession();
14     }
15 }

sqlsession使用方法

//1.定义sqlsession
sqlsession sqlsession = null;
try {
    sqlsession = opensession();
    //2.获取映射器
    usermapper mapper = sqlsession.getmapper(usermapper.class);
    //3.some code like 'user u = mapper.findbyid(id);'
    //4.sqlsession不提交默认回滚!增删改需格外注意!
    sqlsession.commit();
} catch (exception e) {
    throw new runtimeexception(e);
} finally {
    if (sqlsession != null) {
        sqlsession.close();
    }
}

三:映射器

1.映射器元素简介

我们可以在映射器中定义哪些元素,以及它们有何作用呢?

元素名称 作用
insert 定义插入语句
delete 定义删除语句
update 定义修改语句
select 定义查询语句
parametermap 定义参数映射关系
resultmap 提供从数据库结果集到pojo映射规则
cache 配置当前命名空间的缓存配置(二级缓存)
sql 定义部分sql,各个地方都可引用
cache-ref 引用其他命名空间的缓存配置

在各个元素当中又有相当多的属性配置项,这里不多赘述,通过下一节掌握常用的内容即可。这里特别说明sql元素的使用:

<sql id="user_columns">  <!-- 此处定义后,处处使用,尤其字段多的时候 -->
    id, name, password   
</sql>
<select ....>
    select <include refid="user_columns"/> from users where uid=#{id}
</select>

2.简单crud操作

2.1添加用户
<!-- 1.添加用户 -->
<insert id="add" parametertype="user">
    insert into users (name,password) values (#{name},#{password});
</insert>
2.2添加用户并返回数据库中的主键
<!-- 2.添加用户,获取数据库生成的主键值(需数据库具备主键自增功能) -->
<insert id="add" parametertype="user" usegeneratedkeys="true" keyproperty="uid">
    insert into users (name,password) values(#{name},#{password});
</insert>
<!-- 3.添加用户,获取数据库生成的主键:数据库有无自动增长能力都可以-->
<insert id="add" parametertype="user">
    <selectkey keycolumn="uid" keyproperty="uid" resulttype="int" order="after">
        select last_insert_id();
    </selectkey>
    insert into users (name,password) values(#{name},#{password});
</insert>
2.3修改/删除用户
<!-- 4.修改/删除用户 -->
<update id="update" parametertype="user">
    update users set name=#{name},password=#{password} where uid=#{uid};
</update>
<delete id="delete" >
    delete from users where uid=#{uid};
</delete>
2.4查询用户
<!-- 5.查询所有的用户 -->
<!-- 定义查询结果映射规则(结果集映射可以用别名) -->
<resultmap id="usermap" type="user">
    <id column="id" property="uid"></id>
    <result column="姓名" property="name"></result>
    <result column="password" property="password"></result>
</resultmap>
<!-- 查询语句 -->
<select id="findall" resultmap="usermap">
    select uid as id,name as '姓名',password from users;
</select>
<!--6.根据用户id查询用户(单个参数)-->
<select id="findbyid" parametertype="int" resulttype="user">
    select uid,name,password from users where uid=#{uid};
</select>
<!-- 7.根据用户名和密码查询用户(接口定义方法参数时@param(" ")进行指定,否则多个参数时
默认使用 arg0,arg1   或param1,param2来映射) -->
<select id="findbynamepassword" resulttype="user">
    select uid,name,password from users where name=#{name} and password=#{password};
</select>
<!-- 8.根据用户实体对象查询用户 -->
<select id="findbyuser" parametertype="user" resulttype="user">
    select uid,name,password from users where name=#{name};
</select>
<!-- 9.根据用户名进行模糊查询 -->
<select id="finduserslikename" resulttype="user">
    select uid,name,password from users where name like concat("%",#{name},"%");
</select>

四:动态sql和高级查询

1.动态sql

  mybatis的动态sql包含这些元素:if | choose(when ohterwise) |trim(where set) | foreach ,通过这些元素来动态组装sql语句,主要是增改查操作。(实际开发中,严禁使用select * 操作。这里为了简便使用select *演示)!

1.1使用 if,实现动态sql,完成查询操作
<!-- 1.使用if,实现动态sql,完成查询操作 -->
<select id="findbycondition" parametertype="user" resulttype="user">
    select uid,name,password,email from users where 1 = 1
    <if test="name != null and name !=''">
        and name like concat("%",#{name},"%")
    </if>
    <if test="password != null and password != '' ">
        and password = #{password}
    </if>
</select>
1.2使用if,实现动态sql,完成更新操作
<!-- 2.使用if,实现动态sql,完成更新操作 -->
<update id="updateuser" parametertype="user">
   update users set
   <if test="name != null and name != '' ">
       name=#{name},
   </if>
   <if test="password != null and password != '' ">
       password=#{password},
   </if>
   uid=#{uid} where uid=#{uid}; <!-- 保证任何情况下的sql完整 -->
</update>
1.3使用if,实现动态sql,完成添加操作
<!-- 3.使用if,实现动态sql,完成添加操作 -->
<insert id="adduser" parametertype="user">
    insert into users (name,
    <if test="password != null and password != '' ">
        password,
    </if>email,phonenumber,birthday) values(#{name},
    <if test="password != null and password != '' ">
        #{password},
    </if>#{email},#{phonenumber},#{birthday});
</insert>
1.4使用choose when otherwise,实现动态sql,完成查询操作
<!-- 4.使用choose when otherwise,实现动态sql,完成查询操作 -->
<select id="findbycondition" parametertype="user" resulttype="user">
    select * from users where 1 = 1 <!-- 动态组装准备 -->
    <choose>
        <when test="name != null and name != '' ">
            and name like concat("%",#{name},"%");
        </when>
        <otherwise>
            and 1 = 2; <!-- 动态否决 -->
        </otherwise>
    </choose>
</select>
1.5使用if和where,实现动态sql,完成查询操作 ★★★
<!-- 5.使用if和where,实现动态sql,完成查询操作 -->
<select id="findbycondition" resulttype="user" parametertype="user">
    select * from users
    <where>  <!-- 至少有一个if执行时才会加上where关键字并去掉紧跟后面的and|or关键字 -->
        <if test="name != null and name != '' ">
            and name like concat("%",#{name},"%")
        </if>
        <if test="password != null and password != '' ">
            and password=#{password}
        </if>
    </where>
</select>
1.6使用if和set,实现动态sql,完成更新操作 ★★
<!-- 6.使用if和set,实现动态sql,完成更新操作 -->
<update id="updateuser" parametertype="user">
    update users
    <set>   <!-- set元素会去掉最后一个,号 -->
        <if test="name != null and name != '' ">
            name=#{name},
        </if>
        <if test="password != null and password != '' ">
            password=#{password},
        </if>
        uid=#{uid},
    </set>
    where uid=#{uid};
</update>
<!-- trim元素的使用 -->
<trim prefix="where" prefixoverrides="and|or"></trim> <!-- 等同与where元素 -->
<trim prefix="set" suffixoverrides=","></trim> <!-- 等同与set元素 -->
1.7使用foreach,实现动态sql,完成根据id集合、数组等的查询操作
<!-- 7.使用foreach,实现动态sql,完成根据id list列表的查询操作 -->
<select id="findbyids" resulttype="user">
    select * from users where uid in
    <foreach collection="collection" open="(" close=")" separator="," item="uid">
        #{uid}
    </foreach>
</select>
<!-- foreach中的collection值取决于要遍历的对象类型(mybatis内部做判断后默认的)
 list : 可取 collection或list
 set  : 取 collection
 array: 取 array
 map  : 取 _parameter   (用map无意义,遍历的依旧是value)
上述默认引用都可以在接口方法中通过@param(“  ”)覆盖掉!
-->
1.8bind元素

  bind元素的作用是通过ognl表达式自定义一个上下文变量,这样更方便我们使用。在进行模糊查询的时候,如果是mysql数据库,我们常用concat函数用“%”和参数连接。然而在oracle数据则是用连接符号“||”。这样sql就需要提供两种形式去实现。用bind元素,我们就不必使用数据库语言,只要使用mybatis的语言即可与所需参数相连。

<select id="findbycondition" parametertype="user" resulttype="user">
    <!-- 使用bind定义上下文变量 -->
    <bind name="pattern" value="'%' + name + '%' "/>
    select uid,name,password,email from users where 1 = 1
    <if test="name != null and name !=''">
       <!-- and name like concat("%",#{name},"%") -->
        and name like #{pattern}
    </if>
    <if test="password != null and password != '' ">
        and password = #{password}
    </if>
</select>

2.高级查询(多表查询)

2.1一对多关联查询
<!-- 1.使用多表查询,完成一对多关联查询及映射 -->
    <!-- user结果集封装,可以通过继承重复使用 -->
<resultmap id="usermap" type="user">
    <id column="uid" property="uid" />
    <result column="name" property="name"/>
    <result column="password" property="password"/>
</resultmap>
    <!-- logininfo结果集,继承user结果集完整数据 -->
<resultmap id="userlogininfomap" extends="usermap" type="user">
    <!-- 使用collection映射多的一方,oftype指定集合中的数据类型 -->
    <collection property="logininfos" oftype="logininfo">
        <id column="lid" property="lid"/>
        <result column="ip" property="ip"/>
        <result column="logintime" property="logintime"/>
    </collection>
</resultmap>
    <!-- 定义查询语句 -->
<select id="findallusers" resultmap="userlogininfomap">
    select * from users u left join login_infos li on u.uid = li.uid;
</select>
2多对一关联查询(别名映射|resultmap映射|resultmap结合association映射)
<!-- 2.多对一,采用别名映射关联关系 -->
<select id="findalllogininfos" resulttype="logininfo">
    select li.*,
    u.uid "user.uid",
    u.name "user.name",
    u.password "user.password"
    from login_infos li,users u
    where li.uid = u.uid;
</select>
<!-- 3.多对一,采用resultmap进行结关联关系的映射 -->
<resultmap id="usermap" type="logininfo">
    <id column="uid" property="user.uid"/>
    <result column="name" property="user.name"/>
    <result column="password" property="user.password"/>
</resultmap>    
<!-- 这里的resultmap继承关系最好和pojo中的关联关系保持一致,便于理解
     这里不一致,但也可以运行
 -->
<resultmap id="userlogininfomap" extends="usermap" type="logininfo">
    <id column="lid" property="lid"/>
    <result column="ip" property="ip"/>
    <result column="logintime" property="logintime"/>
</resultmap>
<select id="findalllogininfos1" resultmap="userlogininfomap">
    select * from users u,login_infos li where u.uid=li.uid;
</select>
<!-- 4.多对一,使用resultmap结合association进行关联关系的映射 -->
<resultmap id="logininfomap" type="logininfo">
    <id column="lid" property="lid"/>
    <result column="ip" property="ip"/>
    <result column="logintime" property="logintime"/>
</resultmap>
<!-- 这里的resultmap继承关系和pojo的关联关系保持了一致,即logininfo下有user属性 -->
<resultmap id="logininfousermap" extends="logininfomap" type="logininfo">
    <association property="user" javatype="user">
        <id column="uid" property="uid"/>
        <result column="name" property="name"/>
        <result column="password" property="password"/>
    </association>
</resultmap>
<select id="findalllogininfos2" resultmap="logininfousermap">
    select * from users u,login_infos li where u.uid=li.uid;
</select>
2.3多对多关联查询
<!-- 13.使用多表查询,完成多对多查询,查找所有的用户及其角色 -->
<!-- 注意:为了避免冗余,这里继承了2.2中的resultmap -->
 <resultmap id="userrolemap" extends="usermap" type="user">
     <collection property="roles" oftype="role">
         <id column="rid" property="rid"/>
         <result column="name" property="name"/>
         <result column="description" property="description"/>
     </collection>
 </resultmap>
<!-- 多对多主要在sql编写上,需要借助中间表 -->
 <select id="findallusers" resultmap="userrolemap">
     select * from users u left join users_roles ur 
     on u.uid=ur.uid inner join roles r on ur.rid=r.rid;
 </select>

五:嵌套查询和延迟加载

1.加载策略

在关联查询时,对于关联的一方是否查询出来,要根据业务需求而定。不能通过编码方式进行策略的改变,而应该通过修改配置文件改变加载策略。可以使用嵌套查询(分步查询)。

2.嵌套查询

2.1根据多的一方,嵌套查询少的一方
<!-- 1.嵌套查询,使用reultmap结合association使用引用的mapper.xml进行查询 -->
<resultmap id="logininfomap" type="logininfo">
    <id column="lid" property="lid"/>
    <result column="ip" property="ip"/>
    <result column="logintime" property="logintime"/>
</resultmap>
<resultmap id="logininfousermap" extends="logininfomap" type="logininfo">
    <!-- 解决user属性: property:属性
        column:查询依据,也是当前查询表的外键
        select:指向根据外键查询的xml唯一映射
    -->
    <association property="user" column="uid" 
                 select="cn.dintalk.usermapper.findbyid"/>
</resultmap>
<select id="findalllogininfos3" resultmap="logininfousermap">
    select * from login_infos;
</select>

<!-- 在association中,select指向的是另一个mapper.xml文件中的映射(根据命名空间和id) -->
<!-- usermapper.xml中  14.嵌套查询之 根据uid查询用户 -->
<select id="findbyid" resulttype="user">
    select * from users where uid = #{uid};
</select>
2.2根据少的一方,嵌套查询多的一方
<!-- 2.使用嵌套查询,可通过懒加载优化sql,查询所有的用户及其日志信息 -->
<!-- 为了简便,这里继承了上述的id为usermap的resultmap -->
<resultmap id="userlogininfomap" extends="usermap" type="user">
    <collection property="logininfos"  column="uid" 
                select="cn.dintalk.dao.logininfomapper.findalllogininfos"/>
</resultmap>
<select id="findalluser" resultmap="userlogininfomap1">
    select * from users;
</select>
<!-- 同理,在collection中,select指向的是另一个mapper.xml文件的映射 -->
<!--logininfomapper.xml中  5.根据用户id查询所有的登录信息 -->
<select id="findalllogininfos" resulttype="logininfo">
    select * from login_infos where uid=#{uid};
</select>

3.配置延迟加载

3.1全局配置,修改mybatis.xml主配置文件
<!-- 2.配置延迟加载,即sql优化 -->
<settings>
    <!-- 启用懒加载策略 -->
    <setting name="lazyloadingenabled" value="true"/>
    <!-- 覆盖掉延迟加载的触发方法 -->
    <setting name="lazyloadtriggermethods" value=""/>
</settings>

启用延迟加载后,mybatis默认有tostring、equals等4个触发加载的方法。我们也可以将其覆盖掉。

延迟加载,即用到关联数据的时候再去查,不用就不查。(service层中会有很多方法调用dao方法,根据service层中的实际需求动态调整加载策略,高效利用资源!)

3.2每个association和collection都有fetchtype属性
该属性的值会覆盖掉全局配置

fetchtype="lazy"(默认) | eager

  • lazy : 支持延迟加载

  • eager : 立即加载

六:事务控制及数据源

1.事务控制

默认情况下:mysql的事务是自动提交的。

通过 jdbc 可以手动控制:

connection.setautocommit(false);

connection.commit();

connection.rollback();// 开启事务后,未提交会自动回滚!

mybatis中: mybatis-config.xml 作如下配置
<transactionmanager type="jdbc"></transactionmanager>

相当于使用 jdbc 进行事务控制:(增删改时不提交会自动回滚!)

获取sqlsession时:sqlsessionfactory.opensession(); // 手动控制事务 ★

sqlsessionfactory.opensession(true); //自动提交事务

2.数据源

2.1mybatis内置数据源

mybatis内置了三种数据源:

unpooled :不带有池(连接池)|学习时用

pooled : 带有池的 | 实际生产环境使用

jndi : mybatis提供的jndidatasourcefactory来获取数据源

2.2内部原理

pooled对应的是pooleddatasource数据源,pooleddatasourcefactory用来生产带有池的数据源。

unpooled对应的是unpooleddatasource数据源,unpooleddatasourcefactory用来生产不带有池的数据源。

2.3使用druid等第三方数据源(以druid为例)
第一步:引入druid的jar包或数据源
<dependency>
    <groupid>com.alibaba</groupid>
    <artifactid>druid</artifactid>
    <version>1.1.14</version>
</dependency>

第二步:编写工厂类,用来产生druid的数据源,一般选择继承unpooleddatasourcefactory

public class datasourcefactory extends unpooleddatasourcefactory{
    public datasourcefactory(){
        this.datasource = new druiddatasource();//创建druid数据源
    }
}

第三步:在mybatis-config.xml中进行配置

<!--1.类别名的配置 -->
<typealiases>
    <typealias type="cn.dintalk.datasource.datasourcefactory" alias="druid"/>
</typealiases>
<environments default="mysql">
   <environment id="mysql">
       <transactionmanager type="jdbc"></transactionmanager>
       <!-- 2.配置druid数据源 -->
       <datasource  type="druid">
           <!-- 3.配置数据库连接:name由数据源中的setxxx而定,value是外部配置的key -->
           <property name="driverclassname" value="${jdbc.driver}"></property>
           <property name="url" value="${jdbc.url}"></property>
           <property name="username" value="${jdbc.username}"></property>
           <property name="password" value="${jdbc.password}"></property>
       </datasource>
   </environment>
</environments>

七:mybatis的缓存

1.系统缓存

mybatis对缓存提供支持,但是在没有配置的默认情况下,它只开启一级缓存。

1.1一级缓存

一级缓存只是相对于同一个sqlsession而言的。使用sqlsession第一次查询后,mybatis会将其放在缓存中,以后再查询时,如果没有声明需要刷新,且缓存未超时的情况下,sqlsession都只会取出当前缓存的数据,而不会再次发送sql到数据库。

1.2二级缓存

二级缓存是在sqlsessionfactory层面上的,可以将缓存提供给各个sqlsession对象共享。

开启二级缓存配置
mybatis-confi.xml文件中(默认开启,可忽略)
<settings>  
  <!-- 二级缓存配置(默认开启,此行可省略) -->
  <setting name="cacheenabled" value="true"/>
</settings>

mapper.xml文件中

<mapper namespace="cn.dintalk.dao.usermapper">
    <cache/>  <!-- 开启二级缓存,使用默认配置 -->
</mapper>
<!-- 使用默认配置意味着:
映射语句文件中的所有select语句将会被缓存。
映射语句文件中的所有insert、update和delete语句会刷新缓存。
缓存使用默认的least recently used(lru,最近最少使用的)回收策略。
缓存会存1024个列表集合或对象(无论查询方法返回什么)
缓存会被视为是read/write(可读可写)的缓存
-->

tips:

  • 一级缓存中存放的是对象本身,是同一个对象!

  • 二级缓存中存放的是对象的拷贝,对象所属类必须实现jav.io.serializable接口!

配置缓存
<cache  evicition="lru" flushinterval="100000" size="1024" readonly=true/>
  • eviction: 代表的是缓存回收策略,目前mybatis提供以下策略:

    (1)lru, 最近最少使用的,移除最长时间不用的对象。

    (2)fifo, 先进先出,按对象进入缓存的顺序来移除它们。

    (3)soft,软引用,移除基于垃圾回收器状态和软引用规则的对象。

    (4)weak,弱引用,更积极地移除基于垃圾收集器状态和弱引用规则的对象。

  • flushinterval: 刷新间隔时间,单位为毫秒。

  • size: 引用数目,代表缓存最多可以存储多少个对象。

  • readonly: 只读,意味着缓存数据只读。

2.自定义缓存

  系统缓存是mybatis应用机器上的本地缓存,我们也可以使用缓存服务器来定制缓存,如比较流行的redis缓存。我们需要实现mybatis为我们提供的接口org.apache.ibatis.cache.cache,缓存接口简介:

//获取缓存编号
string getid();
//保存key值缓存对象
void putobject(object key,object value);
//通过key获取缓存对象
object getobject(object key);
//通过key删除缓存对象
object removeobject(object key);
//清空缓存
void clear();
//获取缓存对象大小
int getsize();
//获取缓存的读写锁
readwriterlock getreadwriterlock();

由于每种缓存都有其不同的特点,上面的接口都需要我们去实现。假设我们已经有一个实现类:cn.dintalk.mycache。则配置如下:

<cache type="cn.dintalk.mycache"/>

完成上述配置,就能使用自定义的缓存了。mybatis也支持在缓存中定义常用的属性,如:

<cache type="cn.dintalk.mycache">
  <property name="host" value="localhost"/>
</cache>

如果我们在mycache这个类中增加sethost(string host) 方法,那么它在初始化的时候就会被调用,这样我们可以对自定义的缓存设置一些外部参数。

tips: 我们也可配置sql层面的缓存规则,来决定它们是否需要刷新或使用缓存。

<insert ...flushcache="true"/>
<delete ...flushcache="true"/>
<update ...flushcache="true"/>
<select ...flushcache="false" usecache="true"/>

八:附录-mybatis常用配置及开发tips

附录1:mybatis-config.xml常用配置

<?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">
<configuration>
    <!-- 1.引入外部的配置文件 -->
    <properties resource="jdbc.properties"/>
    <!-- 2.配置延迟加载,即sql优化 -->
    <settings>
        <!-- 启用懒加载策略 -->
        <setting name="lazyloadingenabled" value="true"/>
        <!-- 覆盖掉延迟加载的触发方法 -->
        <setting name="lazyloadtriggermethods" value=""/>
        <!-- 二级缓存配置(默认开启,此行可省略) -->
        <!-- 使用二级缓存,在对应的mapper.xml中加入cache即可 -->
        <!--<setting name="cacheenabled" value="true"/>-->
    </settings>
    <!-- 3.类别名的配置 -->
    <typealiases>
        <!-- 单个类的配置 -->
        <!--<typealias type="cn.dintalk.domain.user" alias="user"/>-->
        <!-- 配置druid数据源工厂类别名 -->
        <typealias type="cn.dintalk.datasource.datasourcefactory" alias="druid"/>
        <!-- 给包中所有的类配置默认别名, 即类名首字母小写-->
        <package name="cn.dintalk.domain"/>
    </typealiases>
    <!-- 4.使用默认的环境配置(可以是多个) -->
    <environments default="mysql">
        <environment id="mysql">
            <!-- 事务管理器,此处配置 为jdbc -->
            <transactionmanager type="jdbc"></transactionmanager>
            <!-- 数据源配置,此处配置为 pooled-->
            <!--<datasource  type="pooled">-->
            <!-- 配置druid数据源 -->
            <datasource  type="druid">
                <!-- 配置数据库连接:name由数据源中的setxxx而定,value是外部配置的key -->
                <property name="driverclassname" value="${jdbc.driver}"></property>
                <property name="url" value="${jdbc.url}"></property>
                <property name="username" value="${jdbc.username}"></property>
                <property name="password" value="${jdbc.password}"></property>
            </datasource>
        </environment>
    </environments>
    <!-- 5.注册映射文件 -->
    <mappers>
        <!-- 指定资源文件路径 -->
        <!--<mapper resource="cn/dintalk/dao/usermapper.xml"></mapper>-->
        <!--<mapper resource="cn/dintalk/dao/logininfomapper.xml"></mapper>-->
        <!-- 基于mapper接口的开发:指定类名-->
        <!--<mapper class="cn.dintalk.dao.usermapper"/>-->
        <!-- 指定基于mapper接口开发的包:(需类名和xml文件名一致,包名一致)-->
        <package name="cn.dintalk.dao"/>
    </mappers>
</configuration>

附录2:mapper.xml头约束

<?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="cn.dintalk.dao.usermapper">
    <cache/> <!-- 开启二级缓存 -->
</mapper>

附录3:开发tips

  • sql中如果有特殊符号可使用 <![cdata[ ]]>