這篇文章主要介紹“什么是MyBatis緩存”,在日常操作中,相信很多人在什么是MyBatis緩存問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對(duì)大家解答”什么是MyBatis緩存”的疑惑有所幫助!接下來,請(qǐng)跟著小編一起來學(xué)習(xí)吧!
創(chuàng)新互聯(lián)建站堅(jiān)持“要么做到,要么別承諾”的工作理念,服務(wù)領(lǐng)域包括:成都做網(wǎng)站、網(wǎng)站設(shè)計(jì)、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣等服務(wù),滿足客戶于互聯(lián)網(wǎng)時(shí)代的長安網(wǎng)站設(shè)計(jì)、移動(dòng)媒體設(shè)計(jì)的需求,幫助企業(yè)找到有效的互聯(lián)網(wǎng)解決方案。努力成為您成熟可靠的網(wǎng)絡(luò)建設(shè)合作伙伴!
什么是Mybatis緩存?
使用緩存可以減少Java Application與數(shù)據(jù)庫的交互次數(shù),從而提升程序的運(yùn)行效率。比如,查詢id=1的user對(duì)象,第一次查詢出來之后,會(huì)自動(dòng)將該對(duì)象保存到緩存中。下一次查詢?cè)搶?duì)象時(shí),就可以直接從緩存中獲取,不需要發(fā)送SQL查詢數(shù)據(jù)庫了。
Mybatis緩存分類
一級(jí)緩存:SqlSession級(jí)別,默認(rèn)開啟,且不能關(guān)閉。
mybatis的一級(jí)緩存是SqlSession級(jí)別的緩存,在操作數(shù)據(jù)庫時(shí)需要構(gòu)造SqlSession對(duì)象,在對(duì)象中有一個(gè)HashMap用于存儲(chǔ)緩存數(shù)據(jù),不同的SqlSession之間緩存數(shù)據(jù)區(qū)域(HashMap)是互相不影響的。
一級(jí)緩存的作用域是SqlSession范圍的,當(dāng)在同一個(gè)SqlSession中執(zhí)行兩次相同的sql語句時(shí),第一次執(zhí)行完畢會(huì)將數(shù)據(jù)庫中查詢的數(shù)據(jù)寫到緩存(內(nèi)存)中,第二次查詢時(shí)會(huì)從緩存中獲取數(shù)據(jù),不再去底層進(jìn)行數(shù)據(jù)庫查詢,從而提高了查詢效率。需要注意的是:如果SqlSession執(zhí)行了DML操作(insert、update、delete),并執(zhí)行commit()操作,mybatis則會(huì)清空SqlSession中的一級(jí)緩存,這樣做的目的是為了保證緩存數(shù)據(jù)中存儲(chǔ)的是最新的信息,避免出現(xiàn)臟讀現(xiàn)象。
當(dāng)一個(gè)SqlSession結(jié)束后該SqlSession中的一級(jí)緩存也就不存在了,Mybatis默認(rèn)開啟一級(jí)緩存,不需要進(jìn)行任何配置。
二級(jí)緩存:Mapper級(jí)別,默認(rèn)關(guān)閉,可以開啟。
二級(jí)緩存是Mapper級(jí)別的緩存,使用二級(jí)緩存時(shí),多個(gè)SqlSession使用同一個(gè)Mapper的sql語句去操作數(shù)據(jù)庫,得到的數(shù)據(jù)會(huì)存在二級(jí)緩存區(qū)域,它同樣是使用HashMap進(jìn)行數(shù)據(jù)存儲(chǔ),相比一級(jí)緩存SqlSession,二級(jí)緩存的范圍更大,多個(gè)SqlSession可以共用二級(jí)緩存,二級(jí)緩存是跨SqlSession的。
二級(jí)緩存是多個(gè)SqlSession共享的,其作用域是mapper的同一個(gè)namespace,不同的SqlSession兩次執(zhí)行相同的namespace下的sql語句,且向sql中傳遞的參數(shù)也相同,即最終執(zhí)行相同的sql語句,則第一次執(zhí)行完畢會(huì)將數(shù)據(jù)庫中查詢的數(shù)據(jù)寫到緩存(內(nèi)存),第二次查詢時(shí)會(huì)從緩存中獲取數(shù)據(jù),不再去底層數(shù)據(jù)庫查詢,從而提高查詢效率。
Mybatis默認(rèn)關(guān)閉二級(jí)緩存,可以在setting全局參數(shù)中配置開啟二級(jí)緩存。
下面我們通過代碼來學(xué)習(xí)如何使用MyBatis緩存。
首先來演示一級(jí)緩存,以查詢Student對(duì)象為例。
/**
* @ClassName Student
* @Description
* @Author lzq
* @Date 2019/7/26 13:53
* @Version 1.0
**/
public class Student {
private int SID;
private String Sname;
private String Ssex;
private int Age;
public int getSID() {
return SID;
}
public void setSID(int SID) {
this.SID = SID;
}
public String getSname() {
return Sname;
}
public void setSname(String sname) {
Sname = sname;
}
public String getSsex() {
return Ssex;
}
public void setSsex(String ssex) {
Ssex = ssex;
}
public int getAge() {
return Age;
}
public void setAge(int age) {
Age = age;
}
@Override
public String toString() {
return "[id"+SID+" 名字"+Sname+" 性別"+Ssex+" 年齡"+Age+"]";
}
}
StudentMapper接口:
import org.apache.ibatis.annotations.*;
public interface StudentMapper {
public Student getStudentById(int id);
}
mybatis-config.xml:
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
StudentMapper.xml:
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
select * from student where SID = #{id}
測(cè)試代碼:
**
* @ClassName Test
* @Description
* @Author lzq
* @Date 2019/7/26 13:53
* @Version 1.0
**/
public class Test {
public static void main(String[] args) throws IOException {
String resource = "mybatis-config.xml";
//讀取配置文件
InputStream asStream = Resources.getResourceAsStream(resource);
//創(chuàng)建sqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(asStream);
//創(chuàng)建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
//通過動(dòng)態(tài)代理產(chǎn)生StudentMapper對(duì)象
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
//查詢id為1的元組
Student student = mapper.getStudentById(1);
System.out.println(student);
Student student1 = mapper.getStudentById(1);
System.out.println(student1);
}
}
可以看到結(jié)果,執(zhí)行了一次SQL語句,查詢出兩個(gè)對(duì)象,第一個(gè)對(duì)象是通過SQL查詢的,并保存到緩存中,第二個(gè)對(duì)象是直接從緩存中獲取的。
我們說過一級(jí)緩存是SqlSession級(jí)別的,所以SqlSession一旦關(guān)閉,緩存也就不復(fù)存在了,修改代碼,再次測(cè)試。
測(cè)試代碼:無錫婦科醫(yī)院 http://www.bhnnk120.com/
**
* @ClassName Test
* @Description
* @Author lzq
* @Date 2019/7/26 13:53
* @Version 1.0
**/
public class Test {
public static void main(String[] args) throws IOException {
String resource = "mybatis-config.xml";
//讀取配置文件
InputStream asStream = Resources.getResourceAsStream(resource);
//創(chuàng)建sqlSessionFactory
SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(asStream);
//創(chuàng)建sqlSession
SqlSession sqlSession = sqlSessionFactory.openSession();
//通過動(dòng)態(tài)代理產(chǎn)生StudentMapper對(duì)象
StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);
//查詢id為2的元組
Student student = mapper.getStudentById(1);
System.out.println(student);
sqlSession.close(); //關(guān)閉原有的sqlSession
sqlSession = sqlSessionFactory.openSession(); //創(chuàng)建一個(gè)新的
mapper = sqlSession.getMapper(StudentMapper.class);
Student student1 = mapper.getStudentById(1);
System.out.println(student1);
}
}
可以看到,執(zhí)行了兩次SQL。
在關(guān)閉SqlSession,一級(jí)緩存失效的情況下,可以啟用二級(jí)緩存,實(shí)現(xiàn)提升效率的要求。
MyBatis可以使用自帶的二級(jí)緩存,也可以使用第三方的ehcache二級(jí)緩存。
自帶二級(jí)緩存
mybatis-config.xml配置開啟二級(jí)緩存
PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-config.dtd">
在StudentMapper.xml配置中開啟二級(jí)緩存:
PUBLIC "-//mybatis.org//DTD Mapper 3.0//EN"
"http://mybatis.org/dtd/mybatis-3-mapper.dtd">
select * from student where SID = #{id}
Student類實(shí)現(xiàn)Serializable接口:
import java.io.Serializable;
/**
* @ClassName Student
* @Description
* @Author lzq
* @Date 2019/7/26 13:53
* @Version 1.0
**/
public class Student implements Serializable{
private int SID;
private String Sname;
private String Ssex;
private int Age;
public int getSID() {
return SID;
}
public void setSID(int SID) {
this.SID = SID;
}
public String getSname() {
return Sname;
}
public void setSname(String sname) {
Sname = sname;
}
public String getSsex() {
return Ssex;
}
public void setSsex(String ssex) {
Ssex = ssex;
}
public int getAge() {
return Age;
}
public void setAge(int age) {
Age = age;
}
@Override
public String toString() {
return "[id"+SID+" 名字"+Sname+" 性別"+Ssex+" 年齡"+Age+"]";
}
}
測(cè)試代碼依舊是上一次用的那個(gè):
可以看到,執(zhí)行了一次SQL,查詢出兩個(gè)對(duì)象,cache命中率為0.5;
到此,關(guān)于“什么是MyBatis緩存”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注創(chuàng)新互聯(lián)網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!