亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

什么是MyBatis緩存

發布時間:2021-09-04 22:18:27 來源:億速云 閱讀:144 作者:chen 欄目:MySQL數據庫

這篇文章主要介紹“什么是MyBatis緩存”,在日常操作中,相信很多人在什么是MyBatis緩存問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”什么是MyBatis緩存”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

  什么是Mybatis緩存?

  使用緩存可以減少Java Application與數據庫的交互次數,從而提升程序的運行效率。比如,查詢id=1的user對象,第一次查詢出來之后,會自動將該對象保存到緩存中。下一次查詢該對象時,就可以直接從緩存中獲取,不需要發送SQL查詢數據庫了。

  Mybatis緩存分類

  一級緩存:SqlSession級別,默認開啟,且不能關閉。

  mybatis的一級緩存是SqlSession級別的緩存,在操作數據庫時需要構造SqlSession對象,在對象中有一個HashMap用于存儲緩存數據,不同的SqlSession之間緩存數據區域(HashMap)是互相不影響的。

  一級緩存的作用域是SqlSession范圍的,當在同一個SqlSession中執行兩次相同的sql語句時,第一次執行完畢會將數據庫中查詢的數據寫到緩存(內存)中,第二次查詢時會從緩存中獲取數據,不再去底層進行數據庫查詢,從而提高了查詢效率。需要注意的是:如果SqlSession執行了DML操作(insert、update、delete),并執行commit()操作,mybatis則會清空SqlSession中的一級緩存,這樣做的目的是為了保證緩存數據中存儲的是最新的信息,避免出現臟讀現象。

  當一個SqlSession結束后該SqlSession中的一級緩存也就不存在了,Mybatis默認開啟一級緩存,不需要進行任何配置。

  二級緩存:Mapper級別,默認關閉,可以開啟。

  二級緩存是Mapper級別的緩存,使用二級緩存時,多個SqlSession使用同一個Mapper的sql語句去操作數據庫,得到的數據會存在二級緩存區域,它同樣是使用HashMap進行數據存儲,相比一級緩存SqlSession,二級緩存的范圍更大,多個SqlSession可以共用二級緩存,二級緩存是跨SqlSession的。

  二級緩存是多個SqlSession共享的,其作用域是mapper的同一個namespace,不同的SqlSession兩次執行相同的namespace下的sql語句,且向sql中傳遞的參數也相同,即最終執行相同的sql語句,則第一次執行完畢會將數據庫中查詢的數據寫到緩存(內存),第二次查詢時會從緩存中獲取數據,不再去底層數據庫查詢,從而提高查詢效率。

  Mybatis默認關閉二級緩存,可以在setting全局參數中配置開啟二級緩存。

  下面我們通過代碼來學習如何使用MyBatis緩存。

  首先來演示一級緩存,以查詢Student對象為例。

  /**

  * @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}

  測試代碼:

  **

  * @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);

  //創建sqlSessionFactory

  SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(asStream);

  //創建sqlSession

  SqlSession sqlSession = sqlSessionFactory.openSession();

  //通過動態代理產生StudentMapper對象

  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);

  }

  }

  可以看到結果,執行了一次SQL語句,查詢出兩個對象,第一個對象是通過SQL查詢的,并保存到緩存中,第二個對象是直接從緩存中獲取的。

  我們說過一級緩存是SqlSession級別的,所以SqlSession一旦關閉,緩存也就不復存在了,修改代碼,再次測試。

  測試代碼:無錫婦科醫院 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);

  //創建sqlSessionFactory

  SqlSessionFactory sqlSessionFactory = new SqlSessionFactoryBuilder().build(asStream);

  //創建sqlSession

  SqlSession sqlSession = sqlSessionFactory.openSession();

  //通過動態代理產生StudentMapper對象

  StudentMapper mapper = sqlSession.getMapper(StudentMapper.class);

  //查詢id為2的元組

  Student student = mapper.getStudentById(1);

  System.out.println(student);

  sqlSession.close(); //關閉原有的sqlSession

  sqlSession = sqlSessionFactory.openSession(); //創建一個新的

  mapper = sqlSession.getMapper(StudentMapper.class);

  Student student1 = mapper.getStudentById(1);

  System.out.println(student1);

  }

  }

  可以看到,執行了兩次SQL。

  在關閉SqlSession,一級緩存失效的情況下,可以啟用二級緩存,實現提升效率的要求。

  MyBatis可以使用自帶的二級緩存,也可以使用第三方的ehcache二級緩存。

  自帶二級緩存

  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}

  Student類實現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+"]";

  }

  }

  測試代碼依舊是上一次用的那個:

  可以看到,執行了一次SQL,查詢出兩個對象,cache命中率為0.5;

到此,關于“什么是MyBatis緩存”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

扬中市| 嘉兴市| 南雄市| 新宾| 大同市| 邮箱| 乌审旗| 濉溪县| 孙吴县| 嵊州市| 冀州市| 柳林县| 南投县| 弥勒县| 桃源县| 松溪县| 江孜县| 民县| 永登县| 和田县| 博白县| 麟游县| 天长市| 潼南县| 策勒县| 和林格尔县| 象州县| 托克逊县| 大连市| 包头市| 方正县| 肥西县| 章丘市| 余江县| 太仆寺旗| 朔州市| 潼关县| 雷山县| 商水县| 静安区| 昭觉县|