溫馨提示×

溫馨提示×

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

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

Mybatis如何通過注解開啟使用二級緩存

發(fā)布時間:2020-09-10 10:39:20 來源:腳本之家 閱讀:173 作者:全me村的希望 欄目:編程語言

這篇文章主要介紹了Mybatis基于注解開啟使用二級緩存,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下

本文主要是補充一下Mybatis中基于注解的二級緩存的開啟使用方法。

1.在Mybatis的配置文件中開啟二級緩存

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE configuration
    PUBLIC "-//mybatis.org//DTD Config 3.0//EN"
    "http://mybatis.org/dtd/mybatis-3-config.dtd">
<configuration>
  <settings>
    <!--開啟全局的懶加載-->
    <setting name="lazyLoadingEnabled" value="true"/>
    <!--&lt;!&ndash;關(guān)閉立即加載,其實不用配置,默認(rèn)為false&ndash;&gt;-->
    <!--<setting name="aggressiveLazyLoading" value="false"/>-->
    <!--開啟Mybatis的sql執(zhí)行相關(guān)信息打印-->
    <setting name="logImpl" value="STDOUT_LOGGING" />
    <!--默認(rèn)是開啟的,為了加強記憶,還是手動加上這個配置-->
    <setting name="cacheEnabled" value="true"/>
  </settings>
  <typeAliases>
    <typeAlias type="com.example.domain.User" alias="user"/>
    <package name="com.example.domain"/>
  </typeAliases>
  <environments default="test">
    <environment id="test">
      <!--配置事務(wù)-->
      <transactionManager type="jdbc"></transactionManager>
      <!--配置連接池-->
      <dataSource type="POOLED">
        <property name="driver" value="com.mysql.jdbc.Driver"/>
        <property name="url" value="jdbc:mysql://localhost:3306/test1"/>
        <property name="username" value="root"/>
        <property name="password" value="123456"/>
      </dataSource>
    </environment>
  </environments>
  <mappers>
    <package name="com.example.dao"/>
  </mappers>
</configuration>

開啟緩存 <setting name="cacheEnabled" value="true"/>,為了查看Mybatis中查詢的日志,添加 <setting name="logImpl" value="STDOUT_LOGGING" />開啟日志的配置。

2.領(lǐng)域類以及Dao

public class User implements Serializable{
  private Integer userId;
  private String userName;
  private Date userBirthday;
  private String userSex;
  private String userAddress;
  private List<Account> accounts;
  省略get和set方法...... 
}

import com.example.domain.User;
import org.apache.ibatis.annotations.*;
import org.apache.ibatis.mapping.FetchType;

import java.util.List;
@CacheNamespace(blocking = true)
public interface UserDao {
  /**
   * 查找所有用戶
   * @return
   */
  @Select("select * from User")
  @Results(id = "userMap",value = {@Result(id = true,column = "id",property = "userId"),
      @Result(column = "username",property = "userName"),
      @Result(column = "birthday",property = "userBirthday"),
      @Result(column = "sex",property = "userSex"),
      @Result(column = "address",property = "userAddress"),
      @Result(column = "id",property = "accounts",many = @Many(select = "com.example.dao.AccountDao.findAccountByUid",fetchType = FetchType.LAZY))
  })
  List<User> findAll();

  /**
   * 保存用戶
   * @param user
   */
  @Insert("insert into user(username,birthday,sex,address) values(#{username},#{birthday},#{sex},#{address})")
  void saveUser(User user);

  /**
   * 更新用戶
   * @param user
   */
  @Update("update user set username=#{username},birthday=#{birthday},sex=#{sex},address=#{address} where id=#{id}")
  void updateUser(User user);

  /**
   * 刪除用戶
   * @param id
   */
  @Delete("delete from user where id=#{id}")
  void deleteUser(Integer id);

  /**
   * 查詢用戶根據(jù)ID
   * @param id
   * @return
   */
  @Select("select * from user where id=#{id}")
  @ResultMap(value = {"userMap"})
  User findById(Integer id);

  /**
   * 根據(jù)用戶名稱查詢用戶
   * @param name
   * @return
   */
//  @Select("select * from user where username like #{name}")
  @Select("select * from user where username like '%${value}%'")
  List<User> findByUserName(String name);

  /**
   * 查詢用戶數(shù)量
   * @return
   */
  @Select("select count(*) from user")
  int findTotalUser();
}

3.在對應(yīng)的Dao類上面增加注釋以開啟二級緩存 

@CacheNamespace(blocking = true)

4.測試

public class UserCacheTest {

  private InputStream in;
  private SqlSessionFactory sqlSessionFactory;

  @Before
  public void init()throws Exception{
    in = Resources.getResourceAsStream("SqlMapConfig.xml");
    sqlSessionFactory = new SqlSessionFactoryBuilder().build(in);

  }
  @After
  public void destory()throws Exception{
    in.close();
  }
  @Test
  public void testFindById(){
    //第一查詢
    SqlSession sqlSession1 = sqlSessionFactory.openSession();
    UserDao userDao1 = sqlSession1.getMapper(UserDao.class);
    User user1 = userDao1.findById(41);
    System.out.println(user1);
    //關(guān)閉一級緩存
    sqlSession1.close();
    //第二次查詢
    SqlSession sqlSession2 = sqlSessionFactory.openSession();
    UserDao userDao2 = sqlSession2.getMapper(UserDao.class);
    User user2 = userDao2.findById(41);
    System.out.println(user2);
    sqlSession1.close();

    System.out.println(user1 == user2);
  }

}

(1)未開啟二級緩存時

Mybatis如何通過注解開啟使用二級緩存

(2)開啟二級緩存時

Mybatis如何通過注解開啟使用二級緩存

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI