环境:
回顾:
SSM框架:配置文件的。最好的学习方式:看官网文档;
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-vz1pe9Gk-1665812415272)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220827160518652.png)]
MyBatis 是一款优秀的持久层框架
它支持自定义 SQL、存储过程以及高级映射。
MyBatis 免除了几乎所有的 JDBC 代码以及设置参数和获取结果集的工作。
MyBatis 可以通过简单的 XML 或注解来配置和映射原始类型、接口和 Java POJO(Plain Old Java Objects,普通老式 Java 对象)为数据库中的记录。
MyBatis本是apache的一个开源项目iBatis,2010年这个项目由apache software foundation迁移到了[google code](https://baike.baidu.com/item/google code/2346604),并且改名为MyBatis。
2013年11月迁移到Github。
如何获得Mybatis?
<!-- https://mvnrepository.com/artifact/org.mybatis/mybatis -->
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.10</version>
</dependency>
即把数据(如内存中的对象)保存到可永久保存的存储设备中(如磁盘)。持久化的主要应用是将内存中的对象存储在数据库中,或者存储在磁盘文件中、XML数据文件中等等
数据持久化
为什么需要持久化?
有一些对象,不能让他丢掉
内存太贵了
(在写代码中就是负责持久化的一个包)
Dao层、Service层、Controller层…
帮助程序员将数据存入到数据库中
方便
传统的JDBC代码太复杂了简化、框架、自动化。
不用Mybatis也可以。更容易上手。技术没有高低之分。
总而言之他就是可以用更少的代码实现更多的功能
优点:
最重要的一点:使用的人多!
思路 :搭建环境–>导入Mybatis–>编写代码–>测试!
搭建数据库
新建项目
public class User {
private int id;
private String name;
private String pwd;
@Override
public String toString() {
return "User{" +
"id=" + id +
", name='" + name + '\'' +
", pwd='" + pwd + '\'' +
'}';
}
public User() {
}
public User(int id, String name, String pwd) {
this.id = id;
this.name = name;
this.pwd = pwd;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public String getPwd() {
return pwd;
}
public void setPwd(String pwd) {
this.pwd = pwd;
}
}
public interface UserDao {
//获取
List<User> getUser();
}
<?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">
<!--namespace=绑定一个对应的Dao/Mapper接口 -->
<mapper namespace="com.xing.dao.UserDao">
<select id="getUser" resultType="com.xing.pojo.User">
select * from user;
</select>
</mapper>
注意点:
org.apache.ibatis.builder.BuilderException: Error parsing SQL Mapper Configuration. Cause: java.io.IOException: Could not find resource com/xing/dao/UserMapper.xml
就是不在resource里面的资源无法导出的问题
可能遇到的问题
配置文件没有注册
绑定接口错误
方法名不对
返回类型不对
Maven导出资源问题
解决
<build>
<resources>
<resource>
<directory>src/main/resources</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
<resource>
<directory>src/main/java</directory>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
</includes>
<filtering>true</filtering>
</resource>
</resources>
</build>
namespace中的包名要和Dao/mapper接口的包名一致!
选择,查询语句;
insert into 表名(字段名,字段名,...) values(新值,新值,...);
UPDATE 表名称 SET 列名称 = 新值 WHERE 列名称 = 某值;
delete from 表名;
注意点:
假设,我们的实体类,或者数据库中的表,字段或者参数过多,我们应当考虑使用Map!
虽说不太正规,但是企业中常用
Map传递参数,直接在sql中取出key即可!【parameterType=”map“】
对象传递参数,直接在sql中取对象的属性即可!【parameterType=“Object”】
**只有一个基本类型参数的情况下,可以直接在sql中取到!**就是在sql语句中的 #{随便写},因为只有一个变量,他可以自动识别
多个参数用Map,或者注解!
模糊查询怎么写?
Java代码执行的时候,传递通配符% %
User userLike = mapper.getUserLike("%李%");
在sql拼接中使用通配符!
select * from user where name like "%"#{value}"%";
这样子的话可能会存在sql注入问题
configuration(配置)
properties(属性)
settings(设置)
typeAliases(类型别名)
typeHandlers(类型处理器)
objectFactory(对象工厂)
plugins(插件)
environments(环境配置)
environment(环境变量)
transactionManager(事务管理器)
dataSource(数据源)
databaseIdProvider(数据库厂商标识)
mappers(映射器)
MyBatis 可以配置成适应多种环境,
不过要记住:尽管可以配置多个环境,但每个 SqlSessionFactory 实例只能选择一种环境。
学会使用配置多套运行环境!
Mybatis默认的事务管理器就是JDBC ,连接池:POOLED
我们可以通过properties属性来实现引用配置文件
这些属性可以在外部进行配置,并可以进行动态替换。你既可以在典型的 Java 属性文件中配置这些属性,也可以在 properties 元素的子元素中设置
编写一个配置文件
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-st8qLhAU-1665812415274)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220830180832677.png)]
url = jdbc:mysql://localhost:3306/mybatis?userSSL=true&useUnicode=true&characterEncoding=UTF-8
driver = com.mysql.cj.jdbc.Driver
username = root
password = 440823
在核心配置文件中引入
<properties resource="db.properties">
<property name="username" value="root"/>
<property name="password" value="95495"/>
</properties>
<!--可以给实体类起别名-->
<typeAliases>
<typeAlias type="com.xing.pojo.User" alias="User" />
<package name=""/>
</typeAliases>
也可以指定一个包名,Mybatis会在包含名下面搜索需要Java Bean,比如:
扫描实体类的包,它的默认别名就为这个类的类名,首字母小写!
<typeAliases>
<package name="com.xing.pojo.User"/>
</typeAliases>
在实体类比较少的时候,使用第一种方式。
如果实体类十分多,建议使用第二种。(疑问:不同包下面相同的类名怎么办)
第一种可以自定义别名,第二种则不行(但可以用注解起别名)
@Alias("hello")
public class User {}
org.apache.ibatis.binding.BindingException: Type interface com.xing.dao.UserMapper is not known to the MapperRegistry.
不绑定就会出现这个错误
MapperRegistry:注册绑定我们的Mapper文件
方式一:(推荐使用这种方法,不容易出错)
<mappers>
<mapper resource="com/xing/dao/UserMapper.xml"/>
</mappers>
方式二:使用class文件绑定注册
<mappers>
<mapper class="com.xing.dao.UserMapper" />
</mappers>
注意点:
方式三:使用扫描包进行注入绑定
<mappers>
<package name="com.xing.dao"/>
</mappers>
注意点:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-XYJXZn9I-1665812415275)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220830221959368.png)]
作用域和生命周期类别是至关重要的,因为错误的使用会导致非常严重的并发问题。
说白了就是可以想象为:数据库连接池
一旦被创建就应该在应用的运行期间一直存在,没有任何理由丢弃它或重新创建另一个实例
。因此 SqlSessionFactory 的最佳作用域是应用作用域
最简单的就是使用单例模式或者静态单例模式
这里面的每一个Mapper都代表一个具体的业务
数据中的字段
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8gPR5Xm9-1665812415277)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220830223336060.png)]
新建一个项目,拷贝之前的,测试实体类字段不一致的情况
public class User {
private int id;
private String name;
private String password;
}
测试出现问题
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-bazfZX72-1665812415278)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220830224530746.png)]
//select * from user where id = #{id};
//类型处理器
//select id,name,pwd from user where id = #{id};
解决方法:
<select id="getUserById" resultType="com.xing.pojo.User" parameterType="int">
select id,name,pwd as password from user where id = #{id};
</select>
结果集映射
id name pwd
id name password
<resultMap id="userMapper" type="User">
<!--column数据库中的字段,property实体类中的属性-->
<id column="id" property="id"/>
<id column="name" property="name"/>
<id column="pwd" property="password"/>
</resultMap>
resultMap
元素是 MyBatis 中最重要最强大的元素曾经:sout、debug
现在:日志工厂!
在Mybatis中具体使用哪个日志实现,在设置中设定!
STDOUT_LOGGING标准日志输出
在mybatis核心配置文件中,配置 我们的日志!
<settings>
<setting name="logImpl" value="STDOUT_LOGGING"/>
</settings>
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-V9gOLH3d-1665812415279)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220831154323471.png)]
什么是Log4jj?
先导入log4j的包
<!-- https://mvnrepository.com/artifact/log4j/log4j -->
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
log.proerties
log4j.rootLogger=DEBUG,console,file
#控制台输出的相关设置
log4j.appender.console = org.apache.log4j.ConsoleAppender
log4j.appender.console.Target = System.out
log4j.appender.console.Threshold=DEBUG
log4j.appender.console.layout = org.apache.log4j.PatternLayout
log4j.appender.console.layout.ConversionPattern=[%c]-%m%n
#文件输出的相关设置
log4j.appender.file = org.apache.log4j.RollingFileAppender
log4j.appender.file.File=./log/kuang.log
log4j.appender.file.MaxFileSize=10mb
log4j.appender.file.Threshold=DEBUG
log4j.appender.file.layout=org.apache.log4j.PatternLayout
log4j.appender.file.layout.ConversionPattern=[%p][%d{yy-MM-dd}][%c]%m%n
#日志输出级别
log4j.logger.org.mybatis=DEBUG
log4j.logger.java.sql=DEBUG
log4j.logger.java.sql.Statement=DEBUG
log4j.logger.java.sql.ResultSet=DEBUG
log4j.logger.java.sql.PreparedStatement=DEBUG
配置log4j为日志的实现
<settings>
<setting name="logImpl" value="log4j"/>
</settings>
Log4j的使用!,直接测试 运行刚才的查询!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-UKEzuhBC-1665812415279)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220831160910592.png)]
简单使用
在要使用Log4j的类中,导入包 import org.apache.log4j.Logger;
日志对象,参数为当前类的class
static Logger logger = Logger.getLogger(UserDaoTest.class);
日志级别
logger.info("info:进入了log4jTest");
logger.debug("debug:进入了log4jTest");
logger.error("error:进入了log4jTest");
思考:为什么要分页?
语法:SELECT * from user limit startIndex,pageSize;
SELECT * from user limit 3; #[0,n]
使用Mybatis实现分页,核心SQL
接口
//分页查询
List<User> getUserByLimit(Map<String,Integer> map);
Mapper.xml
<!--分页查询-->
<select id="getUserByLimit" parameterType="map" resultMap="userMapper">
select * from user limit #{startIndex},#{pageSize};
</select>
测试
@Test
public void testLimit(){
SqlSession sqlSession = MybatisUtils.getSqlSession();
UserMapper mapper = sqlSession.getMapper(UserMapper.class);
Map map = new HashMap<String, Integer>();
map.put("startIndex",0);
map.put("pageSize",2);
List<User> user = mapper.getUserByLimit(map);
for (User user1 : user) {
System.out.println(user1);
}
sqlSession.close();
}
不再使用SQL分页
接口
//分页2
List<User> getUserByRowBounds();
mapper.xml
<!--分页2-->
<select id="getUserByRowBounds" resultMap="userMapper">
select * from user;
</select
测试
@Test
public void getUserByRowBounds(){
SqlSession sqlSession = MybatisUtils.getSqlSession();
//RowBounds实现
RowBounds rowBounds = new RowBounds(0,2);
//通过java代码实现分页
List<User> userList = sqlSession.selectList("com.xing.dao.UserMapper.getUserByRowBounds",null,rowBounds);
for (User user : userList) {
System.out.println(user);
}
sqlSession.close();
}
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-U0Rvzjhx-1665812415281)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220901133046475.png)]
了解即可,以防以后工作需要
大家之前都学过面向对象编程,也学习过接口,但在真正的开发中,很多时候我们会选择面向接口编程
根本原因:解耦,可拓展,提高复用,分层开发中,上层不用管具体的实现,大家都遵守共同的标准,使得开发变得容易,规范性更好
在一个面向对象的系统中,系统的各种功能是由许许多多的不同对象协作完成的。在这种情况下,各个对象内部是如何实现自己的,对系统设计人员来讲就不那么重要了;
而各个对象之间的协作关系则成为系统设计的关键。小到不同类之间的通信,大到各模块之间的交互,在系统设计之初都是要着重考虑的,这也是系统设计的主要工作内容。面向接口编程就是指按照这种思想来编程。
关于接口的理解
三个面向对象区别
注解在接口上实现
//使用注解实现
@Select("select * from user")
List<User> getUser();
需要在核心配置文件中绑定接口
<mappers>
<!--绑定注解-->
<mapper class="com.xing.dao.UserMapper"/>
</mappers>
测试
本质:反射机制实现
底层:动态代理!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-J2ex3sRQ-1665812415281)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220901140325502.png)]
Mybatis详细的执行流程!
我们可以在工具类中设置自动提交事务
编写接口,增加注解
@Insert("insert into user(id,name,pwd) values(#{id},#{name},#{password})")
int addUser(User user);
@Update("update user set id = #{id},name=#{name},pwd=#{password} where id = #{id}")
int updateUser(User user);
@Delete("delete from user where id = #{id}")
int removeUser(int id);
测试类
【注意:我们必须将接口注册绑定到核心配置类】
关于@Param()注解
**#{} ${}区别 ** (#{}用这个可以防止sql注入)
(1)#{}是预编译处理,${}是字符串替换
(2)MyBatis在处理#{}时,会将SQL中的#{}替换为?号,调用PreparedStatement的set方法来赋值
(3)MyBatis在处理 ${}时,就是把 KaTeX parse error: Expected 'EOF', got '#' at position 31: …tement来赋值 (4)使用#̲{}方式能够很大程度防止sql…{}方式无法防止Sql注入
(5)#{}的变量替换是在DBMS(数据库管理系统)中、变量替换后,#{}对应的变量会自动加上单引号
在IDEA中安装Lombok插件!
在项目中导入lombok的jar包
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<version>1.18.24</version>
<scope>provided</scope>
</dependency>
在实体类上加注解即可!
@Getter and @Setter
@FieldNameConstants
@ToString
@EqualsAndHashCode
@AllArgsConstructor, @RequiredArgsConstructor and @NoArgsConstructor
@Log, @Log4j, @Log4j2, @Slf4j, @XSlf4j, @CommonsLog, @JBossLog, @Flogger, @CustomLog
@Data
@Builder
@SuperBuilder
@Singular
@Delegate
@Value
@Accessors
@Wither
@With
@SneakyThrows
说明:
@Data:无参构造,get,set,toString,hashcode,equals
@AllArgsConstructor
@NoArgsConstructor
@EqualsAndHashCode
@ToString
@Getter and @Setter
SQL
CREATE TABLE `teacher` (
`id` INT(10) NOT NULL,
`name` VARCHAR(30) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=INNODB DEFAULT CHARSET=utf8
INSERT INTO teacher(`id`, `name`) VALUES (1, '秦老师');
CREATE TABLE `student` (
`id` INT(10) NOT NULL,
`name` VARCHAR(30) DEFAULT NULL,
`tid` INT(10) DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `fktid` (`tid`),
CONSTRAINT `fktid` FOREIGN KEY (`tid`) REFERENCES `teacher` (`id`)
) ENGINE=INNODB DEFAULT CHARSET=utf8
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('1', '小明', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('2', '小红', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('3', '小张', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('4', '小李', '1');
INSERT INTO `student` (`id`, `name`, `tid`) VALUES ('5', '小王', '1');
<!--根据查询嵌套处理-->
<select id="getStudentAndTeacher" resultMap="StudentTeacher">
select * from student
</select>
<resultMap id="StudentTeacher" type="student">
<!--复杂的属性,我们需要单独处理 对象:association 集合:collection-->
<association property="teacher" column="tid" javaType="Teacher" select="getTeacher"/>
</resultMap>
<select id="getTeacher" resultType="Teacher">
select * from teacher where id = #{tid}
</select>
<!--按照结果嵌套处理-->
<select id="getStudentAndTeacher2" resultMap="StudentTeacher2">
select s.id sid,s.name sname,t.name tname,t.id tid from student s,teacher t
where s.tid = t.id;
</select>
<resultMap id="StudentTeacher2" type="Student">
<result column="sid" property="id"/>
<result column="sname" property="name"/>
<association property="teacher" javaType="Teacher">
<result column="tname" property="name"/>
<result column="tid" property="id"/>
</association>
</resultMap>
mysql多对一查询
比如:一个老师拥有多个学生!
对于老师而言,就是一对多的关系!
环境搭建
实体类
注意点:
面试高频
什么是动态SQL:动态SQL就是指根据不同的条件生成不同的SQL语句
利用动态SQL这一特性可以测摆脱这种痛苦
动态 SQL 是 MyBatis 的强大特性之一。如果你使用过 JDBC 或其它类似的框架,你应该能理解根据不同条件拼接 SQL 语句有多痛苦,例如拼接时要确保不能忘记添加必要的空格,还要注意去掉列表最后一个列名的逗号。利用动态 SQL,可以彻底摆脱这种痛苦。
使用动态 SQL 并非一件易事,但借助可用于任何 SQL 映射语句中的强大的动态 SQL 语言,MyBatis 显著地提升了这一特性的易用性。
如果你之前用过 JSTL 或任何基于类 XML 语言的文本处理器,你对动态 SQL 元素可能会感觉似曾相识。在 MyBatis 之前的版本中,需要花时间了解大量的元素。借助功能强大的基于 OGNL 的表达式,MyBatis 3 替换了之前的大部分元素,大大精简了元素种类,现在要学习的元素种类比原来的一半还要少。
if
choose (when, otherwise)
trim (where, set)
foreach
创建基础工程
导包
编写配置文件
编写实体类
@Data
public class Blog {
private String id;
private String title;
private String author;
private Date createTime; //属性名和字段名不一致
private int views;
}
编写实体类对应的Mapper接口和Mapper.xml文件
<select id="queryBlogByIf" resultType="blog" parameterType="map">
select * from blog where 2 = 2
<if test="title">
and title = #{title}
</if>
<if test="author">
and author = #{author}
</if>
</select>
<select id="queryBlogByChoose" resultType="blog" parameterType="map">
select * from blog
<where>
<choose>
<when test="title != null">
title = #{title}
</when>
<when test="author != null">
and auathor = #{title}
</when>
<otherwise>
views = #{views}
</otherwise>
</choose>
</where>
</select>
类似与java的switch,这个是只会选择其中一个执行,就是说当其中一个符合条件,剩下的就不执行了
<update id="updateBySet" parameterType="map">
update 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,when,set,choose
<!--select * from blog where 1 = 1 and (id = 1 or id = 2 or id = 3 or id = 4)-->
<select id="queryBlogByForeach" parameterType="map" resultType="blog">
select * from blog
<where>
<foreach collection="ids" item="id" open="and (" close=")" separator="or">
id = #{id}
</foreach>
</where>
</select>
有的时候,我们可能会将一些功能的部分抽取出来,方便复用!
注意事项:
动态SQL就是在拼接SQL语句,我们只要保证SQL的正确性,按照SQL的格式,去排列组合就可以了
建议:
查询 : 链接数据库 , 耗资源!
一次查询的结果 , 给他暂存在一个可以直接取到的地方! --> 内存 : 缓存
我们再次查询相同数据的时候,直接走缓存,就不用走数据库了
1、什么是缓存 [ Cache ]?
2、为什么使用缓存?
3、什么样的数据能使用缓存?
一级缓存也叫本地缓存:
与数据库同一次会话期间查询到的数据会放在本地缓存中。
以后如果需要获取相同的数据,直接从缓存中拿,没必须再去查询数据库
测试步骤:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-3XKb8rJQ-1665812415282)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220912221149781.png)]
缓存失效的情况:
查询不同的东西
增删改操作,可能会改变原来的数据,所以必定会刷新缓存!
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-09B7vvyJ-1665812415283)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220912221712652.png)]
查询不同的Mapper.xml
手动清除缓存
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-ctjJXwMF-1665812415284)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220912221327719.png)]
小结:一级缓存默认是开启的,也无法关闭,只在一次SqlSession中有效,也就是拿到连接到关闭连接这个区间段!
一级缓存就是一个Map。
二级缓存也叫全局缓存,一级缓存作用域太低了,所以诞生了二级缓存
基于namespace级别的缓存,一个名称空间,对应一个二级缓存;
工作机制
步骤:
开启全局缓存
<!--显示的开启二级缓存,默认是true-->
<setting name="cacheEnabled" value="true"/>
在要使用二级缓存的Mapper中开启
<!--使用二级缓存-->
<cache/>
也可以自定义参数
<!--使用二级缓存-->
<cache
eviction="FIFO"
flushInterval="60000"
size="512"
readOnly="true"/>
测试
问题:我们需要将实体类序列化!否则就会报错!
Caused by: java.io.NotSerializableException
小结:
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-o0HWknsv-1665812415284)(C:\Users\WYX\AppData\Roaming\Typora\typora-user-images\image-20220913155352732.png)]
Ehcache是一种广泛使用的开源Java分布式缓存.主要面向通用缓存
要在程序中使用ehcache,先要导包!
<!-- https://mvnrepository.com/artifact/org.mybatis.caches/mybatis-ehcache -->
<dependency>
<groupId>org.mybatis.caches</groupId>
<artifactId>mybatis-ehcache</artifactId>
<version>1.1.0</version>
</dependency>
在mapper中指定使用我们的ehcache缓存实现!
<cache type="org.mybatis.caches.ehcache.EhcacheCache"/>
ehcache.xml
<?xml version="1.0" encoding="UTF-8"?>
<ehcache xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="http://ehcache.org/ehcache.xsd"
updateCheck="false">
<!--
diskStore:为缓存路径,ehcache分为内存和磁盘两级,此属性定义磁盘的缓存位置。参数解释如下:
user.home – 用户主目录
user.dir – 用户当前工作目录
java.io.tmpdir – 默认临时文件路径
-->
<diskStore path="./tmpdir/Tmp_EhCache"/>
<defaultCache
eternal="false"
maxElementsInMemory="10000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="1800"
timeToLiveSeconds="259200"
memoryStoreEvictionPolicy="LRU"/>
<cache
name="cloud_user"
eternal="false"
maxElementsInMemory="5000"
overflowToDisk="false"
diskPersistent="false"
timeToIdleSeconds="1800"
timeToLiveSeconds="1800"
memoryStoreEvictionPolicy="LRU"/>
<!--
defaultCache:默认缓存策略,当ehcache找不到定义的缓存时,则使用这个缓存策略。只能定义一个。
-->
<!--
name:缓存名称。
maxElementsInMemory:缓存最大数目
maxElementsOnDisk:硬盘最大缓存个数。
eternal:对象是否永久有效,一但设置了,timeout将不起作用。
overflowToDisk:是否保存到磁盘,当系统当机时
timeToIdleSeconds:设置对象在失效前的允许闲置时间(单位:秒)。仅当eternal=false对象不是永久有效时使用,可选属性,默认值是0,也就是可闲置时间无穷大。
timeToLiveSeconds:设置对象在失效前允许存活时间(单位:秒)。最大时间介于创建时间和失效时间之间。仅当eternal=false对象不是永久有效时使用,默认是0.,也就是对象存活时间无穷大。
diskPersistent:是否缓存虚拟机重启期数据 Whether the disk store persists between restarts of the Virtual Machine. The default value is false.
diskSpoolBufferSizeMB:这个参数设置DiskStore(磁盘缓存)的缓存区大小。默认是30MB。每个Cache都应该有自己的一个缓冲区。
diskExpiryThreadIntervalSeconds:磁盘失效线程运行时间间隔,默认是120秒。
memoryStoreEvictionPolicy:当达到maxElementsInMemory限制时,Ehcache将会根据指定的策略去清理内存。默认策略是LRU(最近最少使用)。你可以设置为FIFO(先进先出)或是LFU(较少使用)。
clearOnFlush:内存数量最大时是否清除。
memoryStoreEvictionPolicy:可选策略有:LRU(最近最少使用,默认策略)、FIFO(先进先出)、LFU(最少访问次数)。
FIFO,first in first out,这个是大家最熟的,先进先出。
LFU, Less Frequently Used,就是上面例子中使用的策略,直白一点就是讲一直以来最少被使用的。如上面所讲,缓存的元素有一个hit属性,hit值最小的将会被清出缓存。
LRU,Least Recently Used,最近最少使用的,缓存的元素有一个时间戳,当缓存容量满了,而又需要腾出地方来缓存新的元素的时候,那么现有缓存元素中时间戳离当前时间最远的元素将被清出缓存。
-->
</ehcache>
Redis数据库来做缓存!
user"
eternal=“false”
maxElementsInMemory=“5000”
overflowToDisk=“false”
diskPersistent=“false”
timeToIdleSeconds=“1800”
timeToLiveSeconds=“1800”
memoryStoreEvictionPolicy=“LRU”/>
Redis数据库来做缓存!