当前位置:   article > 正文

SpringBoot中注解缓存@Cacheable_cacheable注解的缓存在哪里查看

cacheable注解的缓存在哪里查看
			SpringBoot中注解缓存 @Cacheable 及控制台展示 执行 SQL 查看是否缓存成功

SpringBoot 的maven的项目中,首先在 pom.xml文件中 注入  Spring Boot 缓存支持启动器 及 Ehcache 坐标


	<dependency>
		<groupId>org.springframework.boot</groupId>
		<artifactId>spring-boot-starter-cache</artifactId>
	</dependency>
	
	<!-- Ehcache 坐标 -->
	<dependency>
		<groupId>net.sf.ehcache</groupId>
		<artifactId>ehcache</artifactId>
	</dependency>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15

创建 Ehcache 的配置文件,文件名:ehcache.xml 位置:src/main/resources/ehcache.xml

<diskStore path="java.io.tmpdir"/>


<defaultCache
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        maxElementsOnDisk="10000000"
        diskExpiryThreadIntervalSeconds="120"
        memoryStoreEvictionPolicy="LRU">
    <persistence strategy="localTempSwap"/>
</defaultCache>
<!-- 自定义缓存策略 -->
<cache name="student"
        maxElementsInMemory="10000"
        eternal="false"
        timeToIdleSeconds="120"
        timeToLiveSeconds="120"
        maxElementsOnDisk="10000000"
        diskExpiryThreadIntervalSeconds="120"
        memoryStoreEvictionPolicy="LRU">
    <persistence strategy="localTempSwap"/>
</cache>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24

创建成功后 在 application.properties 中引入创建的 缓存文件
在这里插入图片描述
引入: spring.cache.ehcache.cofnig=ehcache.xml ,
控制台 打印执行的 SQL 日志级别: logging.level.com.test.mapper=debug

项目目录为;
在这里插入图片描述
测试 缓存方法 :

在这里插入图片描述
指定 value =“student” ,student 为 创建文件中 自定义的缓存策略,如果不指定 @Cacheable(value=“student”),
@Cacheable 则默认的缓存策略为 ehcache.xml 文件中

持久层的 底层 测试查询方法
在这里插入图片描述

在这里插入图片描述
创建启动类 ,启用缓存 @EnableCaching
在这里插入图片描述
Junit 测试类
在这里插入图片描述
运行测试类 ,重复调用相同查询方法, 查看控制台打印SQL
在这里插入图片描述
重复调用,查询SQL 第一次调用 直接查询数据库表,第二次调用直接 从缓存中读取,所以 SQL 只执行了一遍

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/知新_RL/article/detail/750188
推荐阅读
相关标签
  

闽ICP备14008679号