什么是动态SQL:动态SQL就是指根据不同的条件生成不同的SQL语句
利用动态SQL这一特性可以摆脱这种痛苦。
动态SQL元素和JSTL或基于类似XML的文本处理器相似。在Mybatis之前的版本中,有很多元素需要花时间了解。Mybatis 3大大精简了元素种类,现在只需要学习原来的一半的元素便可以了。Mybatis采用功能强大的基于OGNL的表达式来淘汰其他大部分元素
CREATE TABLE `blog`(
`id` VARCHAR(50) NOT NULL COMMENT '博客',
`title` VARCHAR(100) NOT NULL COMMENT '博客标题',
`author` VARCHAR(30) NOT NULL COMMENT '博客作者',
`create_time` DATETIME NOT NULL COMMENT '创建时间',
`views` INT(30) NOT NULL COMMENT'浏览器'
)ENGINE=INNODB DEFAULT CHARSET=utf8
<select id="queryBlogIF" parameterType="map" resultType="blog">
select * from mybatis.blog where 1=1
<if test="title != null">
and title = #{title}
if>
<if test="author != null">
and author = #{author}
if>
select>
<select id="queryBlogChoose" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<choose>
<when test="title != null">
title = #{title}
when>
<when test="author != null">
and author = #{author}
when>
<otherwise>
and views=#{views}
otherwise>
choose>
where>
select>
<select id="queryBlogIF" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<if test="title != null">
and title = #{title}
if>
<if test="author != null">
and author = #{author}
if>
where>
select>
<update id="updateBlog" parameterType="map" >
update mybatis.blog
<set>
<if test="title != null">
title = #{title},
if>
<if test="author != null">
author = #{author},
if>
set>
where id = #{id}
update>
所谓的动态SQL,本质还是SQL语句,只是我们可以在SQL层面,去执行一个逻辑代码
if where set choose when
有的时候,我们可能会将一些功能的部分抽取出来,方便复用
使用SQL标签抽取公共部分
<sql id="sql-if-title-author">
<if test="title != null">
title = #{title}
if>
<if test="author != null">
and author = #{author}
if>
sql>
在需要使用的地方使用Include标签引用即可
<select id="queryBlogIF" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<include refid="sql-if-title-author"/>
where>
select>
注意事项:
最好基于单表定义SQL片段!!
sql标签不要存在where标签 因为他是动态的
select * from user where 1=1 and
<foreach item="id" collection="ids" open="(" separator="or" close=")">
#{id}
foreach>
(id=1 or id=2 or id=3)
相当于遍历一个数组
<select id="queryBlogForeach" parameterType="map" resultType="blog">
select * from mybatis.blog
<where>
<foreach item="id" collection="ids" open="and (" separator="or" close=")">
id=#{id}
foreach>
where>
select>
动态SQL就是拼接SQL语句,我们只要保证SQL的正确性,按照SQL的格式,去排列组合就可以了
建议:
现在Mybatis中写出完整的SQL,再对应的去修改成为我们的动态SQL实现通用即可
查询:连接数据库,耗资源!
一次查询结果,给他暂存在一个可以直接取到的地方!–> 内存:缓存
我们再次查询相同数据的时候,直接走缓存,就不用走数据库了
1.什么是缓存【Cache】?
2.为什么使用缓存?
3.什么样的数据能使用缓存?
Mybatis包含一个强大的查询缓存特性,它可以非常方便地定制和配置缓存。缓存可以极大提升查询效率
Mybatis系统中默认定义了两级缓存:一级缓存和二级缓存
默认情况下,只有一级缓存开启。(SqlSession级别的缓存,也称为本地缓存)
二级缓存需要手动和配置,他是基于namespace级别的缓存
为了提高扩展性,Mybatis定义了缓存接口Cache。我们可以通过实现Cache接口来定义二级缓存
一级缓存也叫本地缓存: SqlSession
测试步骤:
开启日志
测试在一个Session中查询相同记录
缓存失效的情况:
查询不同的东西;
增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
查询不同的Mapper.xml
手动清理缓存sqlSession.clearCache()
关闭缓存: sqlSession.close() ;
小结:一级缓存默认是开启的,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间段!!
一级缓存就是一个map
步骤:
1、开启全局缓存 Mybatis-config.xml
<setting name="cacheEnabled" value="true"/>
2、在要使用二级缓存的Mapper中开启
<cache/>
也可以自定义参数
<cache eviction="FIFO"
flushInterval="6000"
size="521"
readOnly="true"
/>
3、测试
问题:我们需要将实体类序列化!否则就会报错!
Caused by: java.io.NotSerializableException:com.kun.pojo.User
public class User implements Serializable{}
小结:
Ehcache是一种广泛使用的开源Java分布式缓存。主要面向通用缓存
1
要在程序中使用,先要导包!
<dependency>
<groupId>org.mybatis.cachesgroupId>
<artifactId>mybatis-ehcacheartifactId>
<version>1.2.1version>
dependency>
在mapper中指定使用我们的ehcache缓存实现!
<cache type="org.mybatis.caches.ehche.EhcacheCache"/>
ehcache.xml
<ehcache>
<diskStore path="java.io.tmpdir"/>
<defaultCache
maxElementsInMemory="4"
eternal="true"
timeToIdleSeconds="100"
timeToLiveSeconds="200"
overflowToDisk="false"
memoryStoreEvictionPolicy="LFU"
diskPersistent="false"
diskExpiryThreadIntervalSeconds="15"
/>
ehcache>
Redis数据库来做缓存!!