动态sql及优化

2.1 if标签
和java中的if语句类似。
    <select id="selectByItem" parameterType="User" resultType="User">
        select * from USER 
        where 1=1
        <!--mybatis如果是低版本时,如果是整形值,不要用‘’来判断;3.4.6版本没有问题-->
        <if test="id != null and id !=''">
            and id = #{id}
        </if>
        <if test="username !=null and username !=''">
            and username=#{username}
        </if>
        <if test="password !=null and password !=''">
            and password=#{password}
        </if>
        <if test="address !=null and address !=''">
            and address=#{address}
        </if>    
    </select>
2.2 where标签
根据查询条件是否存在,来决定是否生成where字符串。
可以去除where后面紧跟的sql关键字, 如or或and
<!-- where标签 -->
    <select id="selectByItem2" parameterType="User" resultType="User">
        select * from USER
        <where>
            <if test="id !='' and id != null">
                and id = #{id}
            </if>
            <if test="username !=null and username !=''">
                and username=#{username}
            </if>
            <if test="password !=null and password !=''">
                and password=#{password}
            </if>
            <if test="address !=null and address !=''">
                and address=#{address}
            </if>
        </where>     
    </select>
2.3 choose when otherwise
和java中switch case作用类似。
不管有多少条件满足,只拼接其中一个条件。
<!-- choose when otherwise -->

    <select id="selectByItem3" parameterType="User" resultType="User">
        select * from USER
        <where>
            <choose>
                <when test="id !='' and id != null">
                    and id = #{id}
                </when>
                <when test="username !=null and username !=''">
                    and username=#{username}
                </when>
                <when test="password !=null and password !=''">
                    and password=#{password}
                </when>
                <when test="address !=null and address !=''">
                    and address=#{address}
                </when>
                <otherwise>
                    and 1=1
                </otherwise>
            </choose>
        </where>     
    </select>
2.4 Set标签
set用法和上面where用法一致。
可以生成update语句中的set关键字,也可去除sql关键字,如逗号(set标签中sql字符串最后的逗号)
<update id="update" parameterType="User">
        update USER
        <set>
            <if test="username !=null and username !=''">
                username = #{username},
            </if>
            <if test="password !=null and password !=''">
                password=#{password},
            </if>
            <if test="address !=null and address !=''">
                address=#{address},
            </if>
        </set>
        where id = #{id}
    </update>
2.5 foreach标签
类似于java中的foreach迭代。把传入sql语句中的数组类型或集合类型数据进行遍历操作。
    <!-- 接口中参数为数组时,collection值必须为array -->
    <select id="selectByIds" resultType="User">
        select * from USER 
        <foreach collection="array" item="id" open="where id in(" separator="," close=")">
            #{id}
        </foreach>
    </select>

    <!-- 接口中参数为pojo,collection值必须为该数组类型属性名 -->
    <select id="selectByIds2" resultType="User" parameterType="User">
        select * from USER 
        <foreach collection="ids" item="id" open="where id in(" separator="," close=")">
            #{id}
        </foreach>
    </select>
2.6 trim标签
可以删除sql语句指定的字符串。
<!--
    prefix="前缀":在后面sql字符串前面拼接指定的前缀。
    prefixOverrides="要去除的字符":把紧跟着前缀后面的字符去掉。
    suffix="后缀":在后面sql字符串后面拼接指定的后缀。
    suffixOverrides="要去除的字符":把紧跟着后缀前面的字符去掉。
-->

<update id="update2" parameterType="User">
        update USER
            <trim prefix="set" prefixOverrides=",">
                <if test="username !=null and username !=''">
                ,username = #{username}
                </if>
                <if test="password !=null and password !=''">
                ,password=#{password}
                </if>
                <if test="address !=null and address !=''">
                ,address=#{address}
                </if>
            </trim>
        where id = #{id}
    </update>

    <update id="update3" parameterType="User">
        update USER
            <trim prefix="set" suffixOverrides=",">
                <if test="username !=null and username !=''">
                username = #{username},
                </if>
                <if test="password !=null and password !=''">
                password=#{password},
                </if>
                <if test="address !=null and address !=''">
                address=#{address},
                </if>
            </trim>
        where id = #{id}
    </update>

三.性能优化

==1.懒加载机制(lazy)==

当进行多表关联查询时,如果关联中数据暂时用不到,可以不去查询,当用到的时候,再发送sql语句去数据库关联出来。
目的是:减少与数据库的交互行为,即减少数据库的开消。
注意:
join查询不支持lazy,多条select查询才支持lazy!

2.步骤

1.在setting标签中设置lazy开关
    <settings>
        <!-- 开启lazy加载 -->
        <setting name="lazyLoadingEnabled" value="true"/>
    </settings>
2.使用select方式进行关联查询

Model类

//User类
public class User {

    private Integer id;
    private String username;
    private String password;
    private String address;

    private List<Orders> list;
}

//Orders类
public class Orders {

    private int id;
    private String oname;
    private int oprice;

}

UserMapper接口

public interface UserMapper {   
    public User selectById(User user);
}

UserMapper.xml

<mapper namespace="lazy.mapper.UserMapper">

    <resultMap type="Users" id="baseResultMap">
        <id column="id" property="id"/>
        <result column="username" property="username"/>
        <result column="password" property="password"/>
        <!-- 关联集合数据,其中ofType用来说明集合中的数据类型 -->
        <collection property="list" ofType="Orders" select="lazy.mapper.OrdersMapper.selectByUid" column="id"></collection>
    </resultMap>

    <select id="selectById"  resultMap="baseResultMap">
        select * from USER where id = #{id}
    </select>

</mapper>

OrdersMapper接口

public interface OrdersMapper {
    public List<Orders> selectByUid(int uid);
}

OrdersMapper.xml

<mapper namespace="lazy.mapper.OrdersMapper">

    <select id="selectByUid" resultType="Orders">
            select * from orders where uid = #{uid}
    </select>

</mapper>

UserService类

public class UserService {

    public User findById(User user) {

        SqlSession session = MybatisUtil.findSqlSession();

        UserMapper mapper = session.getMapper(UserMapper.class);

        User findUser = mapper.selectById(user);

        session.close();

        return findUser;

    }

}

Test类

public class TestLazy {

    UserService ser = new UserService();

    @Test
    public void testLazy(){

        User user = new User();
        user.setId(1);
        User findUser = ser.findById(user);
        //当只使用User表中数据时,只发送一条查询User表的sql语句。
        System.out.println(findUser.getUsername());
        //当主动使用关联表中数据时,mybaits才再次发送查询语句去查询关联表。如果不使用,则该条sql将不会发送给数据库。
        //System.out.println(findUser.getList());
    }
}

==3.一级缓存==

3.1缓存概念
目的,减少与数据库的交互行为,当读取同一条数据时,优先从内存中的缓存中读取,如果能读到数据(命中数据),则就不需要交互数据库,如果读不到,则会交互数据库,查寻内容,放在缓存中,以备下一次查询时,在缓存中能命中数据,提高程序响应速度。
3.2 mybatis的一级缓存
1.一级缓存是默认使用的。
2.一级缓存指的就是sqlsession范围内缓存,在sqlsession中有一个数据区域,是map结构,这个区域就是一级缓存区
域。一级缓存中的key是由sql语句、条件、statement等信息组成一个唯一值。一级缓存中的value,就是查询出的结果
对象。
3.当数据库对应表发生增删改时,并执行commit操作时,默认会刷新一级缓存。
如下图所示:

[图片上传失败...(image-7ec29a-1578025049091)]

第一次发起查询用户id为1的用户信息,先去找缓存中是否有id为1的用户信息,如果没有,从数据库查询用户信
息。得到用户信息,将用户信息存储到一级缓存中。
如果sqlSession去执行commit操作(执行插入、更新、删除),清空SqlSession中的一级缓存,这样做的目的为
了让缓存中存储的是最新的信息,避免脏读。
第二次发起查询用户id为1的用户信息,先去找缓存中是否有id为1的用户信息,缓存中有,直接从缓存中获取用户
信息
3.3缓存测试

UserMapper.xml

<mapper namespace="cache1.mapper.UserMapper">
    <select id="selectById"  resultType="cache1.model.User">
        select * from USER where id = #{id}
    </select>
</mapper>

UserMapper接口

public interface UserMapper {
    public User selectById(User user);
}

UserService类

public class UserService {

    public User findById(User user) {

        SqlSession session = MybatisUtil.findSqlSession();

        UserMapper mapper = session.getMapper(UserMapper.class);

        //查询两次
        User findUser = mapper.selectById(user);
        System.out.println(findUser.getUsername());

        //如果不执行commit(),则发现执行两次查询时,只发送一条sql到数据库,则验证一级缓存存在。
        //当执行commit()操作时,mybatis上下文会默认你进行增删改数据了,则会清空一级缓存;
        session.commit(true);

        User findUser2 = mapper.selectById(user);

        System.out.println(findUser+"===="+findUser2.getUsername());

        session.close();

        return null;

    }

}

摘自:
https://www.cnblogs.com/zongJianKun/p/10328942.html

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,937评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,503评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,712评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,668评论 1 276
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,677评论 5 366
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,601评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,975评论 3 396
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,637评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,881评论 1 298
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,621评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,710评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,387评论 4 319
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,971评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,947评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,189评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 44,805评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,449评论 2 342

推荐阅读更多精彩内容

  • 我的女孩善良、温柔、懒 2013年12月23号,重新认识,一直到现在,我自己就无比幸福,这个世界上就需要我去保护她...
    爸爸依然爱着妈妈阅读 272评论 0 0
  • 我的焦躁总是阶段性的发作,尤其是月底较忙的时候。而今天还是一不小心没控制住,因为同事的几句话,顿生怒火,当场就跟她...
    杨姣娜阅读 106评论 3 1
  • 所以,你嫁我,可好? 先生,你可不能后悔。 晚饭过后,落落和长生坐在房间的窗台上看星星。 白帝城的最高处,很容易让...
    一颗五分熟的丸子阅读 3,518评论 1 7
  • 带2孩子首飞,在之前都跟孩子约定好了,并告知了坐飞机的注意事项,仍然会有遗漏的地方,今天百度再学习一下,增加知识量...
    白云松松阅读 322评论 0 0