1、pom.xml引入jar包

  1. <dependency>
  2. <groupId>org.springframework.boot</groupId>
  3. <artifactId>spring-boot-starter-data-redis</artifactId>
  4. </dependency>

2、application.yml中配置Redis连接信息

  1. spring:
  2. redis:
  3. database: 0 # Redis数据库索引(默认为0
  4. host: localhost # Redis服务器地址
  5. port: 6379 # Redis服务器连接端口
  6. password: # Redis服务器连接密码(默认为空)
  7. timeout: 0 # 连接超时时间(毫秒)

3、修改项目启动类

增加注解@EnableCaching,开启缓存功能,如下:

  1. package com.example.demo;
  2. import org.springframework.boot.SpringApplication;
  3. import org.springframework.boot.autoconfigure.SpringBootApplication;
  4. import org.springframework.cache.annotation.EnableCaching;
  5. @SpringBootApplication
  6. @EnableCaching
  7. public class DemoApplication {
  8. public static void main(String[] args) {
  9. SpringApplication.run(DemoApplication.class, args);
  10. }
  11. }

4.对应的类继承Serializable接口

必须实现序列化才能实现缓存功能

  1. import javax.persistence.Column;
  2. import javax.persistence.Entity;
  3. import javax.persistence.Id;
  4. import javax.persistence.Table;
  5. import java.io.Serializable;
  6. @Table(name = "user")
  7. @Entity
  8. public class User implements Serializable {
  9. @Id
  10. @Column(name = "id")
  11. private String id;
  12. @Column(name = "name")
  13. private String name;
  14. public String getId() {
  15. return id;
  16. }
  17. public void setId(String id) {
  18. this.id = id;
  19. }
  20. public String getName() {
  21. return name;
  22. }
  23. public void setName(String name) {
  24. this.name = name;
  25. }
  26. }

5使用注解

5.1@Cacheable

@Cacheable可以标记在一个方法上,也可以标记在一个类上。当标记在一个方法上时表示该方法是支持缓存的,当标记在一个类上时则表示该类所有的方法都是支持缓存的。对于一个支持缓存的方法,Spring会在其被调用后将其返回值缓存起来,以保证下次利用同样的参数来执行该方法时可以直接从缓存中获取结果,而不需要再次执行该方法。Spring在缓存方法的返回值时是以键值对进行缓存的,值就是方法的返回结果,至于键的话,Spring又支持两种策略,默认策略和自定义策略,这个稍后会进行说明。
需要注意的是当一个支持缓存的方法在对象内部被调用时是不会触发缓存功能的。
@Cacheable可以指定三个属性,value、key和condition。

(1)value属性指定Cache名称

value属性是必须指定的,其表示当前方法的返回值是会被缓存在哪个Cache上的,对应Cache的名称。其可以是一个Cache也可以是多个Cache,当需要指定多个Cache时其是一个数组。

  1. @Override
  2. // 对要进行缓存的类进行缓存配置
  3. @Cacheable(value = "userAll")//Cache是发生在userAll上的
  4. //@Cacheable({"cache1", "cache2"})//Cache是发生在cache1和cache2上的
  5. public List<User> findAll() {
  6. return userDao.findAll();
  7. }

(2)使用key属性自定义key

key属性是用来指定Spring缓存方法的返回结果时对应的key的。该属性支持SpringEL表达式。当我们没有指定该属性时,Spring将使用默认策略生成key。

默认策略
默认的key生成策略是通过KeyGenerator生成的,其默认策略如下:

  • 如果方法没有参数,则使用0作为key。
  • 如果只有一个参数的话则使用该参数作为key。
  • 如果参数多余一个的话则使用所有参数的hashCode作为key。

自定义策略
自定义策略是指我们可以通过Spring的EL表达式来指定我们的key。这里的EL表达式可以使用方法参数及它们对应的属性。使用方法参数时我们可以直接使用“#参数名”或者“#p参数index”。下面是几个使用参数作为key的示例。

  1. @Cacheable(value="users", key="#id")
  2. public User find(Integer id) {return null;}
  3. @Cacheable(value="users", key="#p0")
  4. public User find(Integer id) {return null;}
  5. @Cacheable(value="users", key="#user.id")
  6. public User find(User user) {return null;}
  7. @Cacheable(value="users", key="#p0.id")
  8. public User find(User user) {return null;}

除了上述使用方法参数作为key之外,Spring还为我们提供了一个root对象可以用来生成key。通过该root对象我们可以获取到以下信息。

属性名称 描述 示例
methodName 当前方法名 #root.methodName
method 当前方法 #root.method.name
target 当前被调用的对象 #root.target
targetClass 当前被调用的对象的class #root.targetClass
args 当前方法参数组成的数组 #root.args[0]
caches 当前被调用的方法使用的Cache #root.caches[0].name

当我们要使用root对象的属性作为key时我们也可以将“#root”省略,因为Spring默认使用的就是root对象的属性。如:

  1. @Cacheable(value={"users", "xxx"}, key="caches[1].name")
  2. public User find(User user) { return null; }

(3)condition属性指定发生的条件

有的时候我们可能并不希望缓存一个方法所有的返回结果。通过condition属性可以实现这一功能。condition属性默认为空,表示将缓存所有的调用情形。其值是通过SpringEL表达式来指定的,当为true时表示进行缓存处理;当为false时表示不进行缓存处理,即每次调用该方法时该方法都会执行一次。如下示例表示只有当user的id为偶数时才会进行缓存。

  1. @Cacheable(value={"users"}, key="#user.id", condition="#user.id%2==0")
  2. public User find(User user) {
  3. System.out.println("find user by user " + user);
  4. return user;
  5. }

5.2@CachePut

在支持Spring Cache的环境下,对于使用@Cacheable标注的方法,Spring在每次执行前都会检查Cache中是否存在相同key的缓存元素,如果存在就不再执行该方法,而是直接从缓存中获取结果进行返回,否则才会执行并将返回结果存入指定的缓存中。
@CachePut也可以声明一个方法支持缓存功能。与@Cacheable不同的是使用@CachePut标注的方法在执行前不会去检查缓存中是否存在之前执行过的结果,而是每次都会执行该方法,并将执行结果以键值对的形式存入指定的缓存中。
@CachePut也可以标注在类上和方法上。使用@CachePut时我们可以指定的属性跟@Cacheable是一样的。

  1. @CachePut("users")//每次都会执行方法,并将结果存入指定的缓存中
  2. public User find(Integer id) {return null;}

5.3@CacheEvict

@CacheEvict是用来标注在需要清除缓存元素的方法或类上的。当标记在一个类上时表示其中所有的方法的执行都会触发缓存的清除操作。
@CacheEvict可以指定的属性有value、key、condition、allEntries和beforeInvocation。其中value、key和condition的语义与@Cacheable对应的属性类似。即value表示清除操作是发生在哪些Cache上的(对应Cache的名称);key表示需要清除的是哪个key,如未指定则会使用默认策略生成的key;condition表示清除操作发生的条件。
下面我们来介绍一下新出现的两个属性allEntries和beforeInvocation。

allEntries属性

allEntries是boolean类型,表示是否需要清除缓存中的所有元素。默认为false,表示不需要。当指定了allEntries为true时,Spring Cache将忽略指定的key。有的时候我们需要Cache一下清除所有的元素,这比一个一个清除元素更有效率。

  1. @CacheEvict(value="users", allEntries=true)
  2. public void delete(Integer id) {
  3. System.out.println("delete user by id: " + id);
  4. }

beforeInvocation属性

清除操作默认是在对应方法成功执行之后触发的,即方法如果因为抛出异常而未能成功返回时也不会触发清除操作。使用beforeInvocation可以改变触发清除操作的时间,当我们指定该属性值为true时,Spring会在调用该方法之前清除缓存中的指定元素。

  1. @CacheEvict(value="users", beforeInvocation=true)
  2. public void delete(Integer id) {
  3. System.out.println("delete user by id: " + id);
  4. }

5.4@Caching

@Caching注解可以让我们在一个方法或者类上同时指定多个Spring Cache相关的注解。其拥有三个属性:cacheable、put和evict,分别用于指定@Cacheable、@CachePut和@CacheEvict。

  1. @Caching(cacheable = @Cacheable("users"), evict = { @CacheEvict("cache2"),
  2. @CacheEvict(value = "cache3", allEntries = true) })
  3. public User find(Integer id) {return null;}

6.配置缓存的配置类

  1. /**
  2. * 描述: 缓存的配置类
  3. */
  4. @Configuration
  5. @EnableCaching
  6. public class CachingConfig {
  7. @Bean
  8. public RedisCacheManager redisCacheManager(RedisConnectionFactory connectionFactory) {
  9. RedisCacheWriter redisCacheWriter = RedisCacheWriter
  10. .lockingRedisCacheWriter(connectionFactory);
  11. RedisCacheConfiguration cacheConfiguration = RedisCacheConfiguration.defaultCacheConfig();
  12. cacheConfiguration = cacheConfiguration.entryTtl(Duration.ofSeconds(30));
  13. RedisCacheManager redisCacheManager = new RedisCacheManager(redisCacheWriter,
  14. cacheConfiguration);
  15. return redisCacheManager;
  16. }
  17. }