JAVAWeb - SpringBoot - Spring Cache 相关知识

Spring Cache 相关知识

Spring Cache 是 Spring 框架提供的一个缓存抽象层,用于简化应用程序中的缓存管理。通过使用 Spring Cache,开发者可以在不改变业务逻辑的情况下,为方法调用添加缓存功能。Spring Cache 支持多种缓存实现,如 EhCache、Caffeine、Redis 等,并且提供了统一的注解和编程模型来管理缓存。

1. Spring Cache 的核心概念
1.1 缓存抽象

Spring Cache 提供了一个缓存抽象层,使得开发者可以在不依赖具体缓存实现的情况下,使用缓存功能。这意味着你可以在不同的缓存实现之间切换,而不需要修改业务代码。

1.2 缓存管理器

缓存管理器(CacheManager)是 Spring Cache 的核心接口,用于管理一组缓存。Spring 提供了多种缓存管理器的实现,如 SimpleCacheManagerConcurrentMapCacheManagerEhCacheCacheManagerCaffeineCacheManager 等。

1.3 缓存

缓存(Cache)是存储数据的容器。Spring Cache 中的缓存接口定义了基本的缓存操作,如 putgetevictclear

1.4 缓存注解

Spring Cache 提供了多个注解来简化缓存操作,常用的注解包括:

  • @Cacheable:用于标记一个方法的返回值应该被缓存。
  • @CachePut:用于标记一个方法的返回值应该被更新到缓存中。
  • @CacheEvict:用于标记一个方法应该从缓存中移除数据。
  • @Caching:用于组合多个缓存操作。
  • @CacheConfig:用于在类级别共享缓存配置。
2. 配置 Spring Cache
2.1 启用缓存支持

要启用 Spring Cache 支持,需要在 Spring 配置类上添加 @EnableCaching 注解:

import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableCaching
public class CacheConfig {
    // 配置缓存管理器
}
2.2 配置缓存管理器

Spring 提供了多种缓存管理器的实现,可以根据需要选择合适的缓存管理器。以下是一些常见的缓存管理器配置示例:

2.2.1 SimpleCacheManager

SimpleCacheManager 是一个简单的缓存管理器,使用 ConcurrentMap 作为缓存存储:

import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.concurrent.ConcurrentMapCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        return new ConcurrentMapCacheManager("cache1", "cache2");
    }
}
2.2.2 EhCacheCacheManager

EhCacheCacheManager 使用 EhCache 作为缓存实现:

import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.ehcache.EhCacheCacheManager;
import org.springframework.cache.ehcache.EhCacheManagerFactoryBean;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.core.io.ClassPathResource;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        return new EhCacheCacheManager(ehCacheCacheManager().getObject());
    }

    @Bean
    public EhCacheManagerFactoryBean ehCacheCacheManager() {
        EhCacheManagerFactoryBean factoryBean = new EhCacheManagerFactoryBean();
        factoryBean.setConfigLocation(new ClassPathResource("ehcache.xml"));
        factoryBean.setShared(true);
        return factoryBean;
    }
}
2.2.3 CaffeineCacheManager

CaffeineCacheManager 使用 Caffeine 作为缓存实现:

import com.github.benmanes.caffeine.cache.Caffeine;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.caffeine.CaffeineCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.concurrent.TimeUnit;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        CaffeineCacheManager cacheManager = new CaffeineCacheManager("cache1", "cache2");
        cacheManager.setCaffeine(caffeineCacheBuilder());
        return cacheManager;
    }

    Caffeine<Object, Object> caffeineCacheBuilder() {
        return Caffeine.newBuilder()
                .expireAfterWrite(10, TimeUnit.MINUTES)
                .maximumSize(100);
    }
}
3. 使用缓存注解
3.1 @Cacheable

@Cacheable 注解用于标记一个方法的返回值应该被缓存。当调用被 @Cacheable 注解的方法时,Spring 会先检查缓存中是否存在该方法的返回值,如果存在则直接返回缓存中的值,否则执行方法并将返回值存入缓存。

import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Cacheable("users")
    public User getUserById(Long id) {
        // 模拟从数据库中获取用户信息
        return new User(id, "John Doe");
    }
}
3.2 @CachePut

@CachePut 注解用于标记一个方法的返回值应该被更新到缓存中。与 @Cacheable 不同,@CachePut 每次都会执行方法,并将返回值存入缓存。

import org.springframework.cache.annotation.CachePut;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @CachePut(value = "users", key = "#user.id")
    public User updateUser(User user) {
        // 模拟更新用户信息
        return user;
    }
}
3.3 @CacheEvict

@CacheEvict 注解用于标记一个方法应该从缓存中移除数据。当调用被 @CacheEvict 注解的方法时,Spring 会从缓存中移除相应的数据。

import org.springframework.cache.annotation.CacheEvict;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @CacheEvict(value = "users", key = "#id")
    public void deleteUser(Long id) {
        // 模拟删除用户信息
    }
}
3.4 @Caching

@Caching 注解用于组合多个缓存操作。例如,可以在一个方法上同时使用 @Cacheable@CacheEvict

import org.springframework.cache.annotation.Caching;
import org.springframework.cache.annotation.CacheEvict;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Caching(
        cacheable = @Cacheable("users"),
        evict = @CacheEvict(value = "users", key = "#id")
    )
    public User getUserById(Long id) {
        // 模拟从数据库中获取用户信息
        return new User(id, "John Doe");
    }
}
3.5 @CacheConfig

@CacheConfig 注解用于在类级别共享缓存配置。可以在类上使用 @CacheConfig 注解来指定缓存名称,从而避免在每个方法上重复指定缓存名称。

import org.springframework.cache.annotation.CacheConfig;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
@CacheConfig(cacheNames = "users")
public class UserService {

    @Cacheable
    public User getUserById(Long id) {
        // 模拟从数据库中获取用户信息
        return new User(id, "John Doe");
    }
}
4. 缓存配置属性

Spring Cache 提供了多个配置属性,用于控制缓存的行为。以下是一些常用的配置属性:

4.1 key

key 属性用于指定缓存的键。可以使用 SpEL(Spring Expression Language)来动态生成键。

@Cacheable(value = "users", key = "#id")
public User getUserById(Long id) {
    // 模拟从数据库中获取用户信息
    return new User(id, "John Doe");
}
4.2 condition

condition 属性用于指定缓存的条件。可以使用 SpEL 来动态判断是否需要缓存。

@Cacheable(value = "users", condition = "#id > 0")
public User getUserById(Long id) {
    // 模拟从数据库中获取用户信息
    return new User(id, "John Doe");
}
4.3 unless

unless 属性用于指定不缓存的条件。可以使用 SpEL 来动态判断是否不需要缓存。

@Cacheable(value = "users", unless = "#result == null")
public User getUserById(Long id) {
    // 模拟从数据库中获取用户信息
    return new User(id, "John Doe");
}
5. 缓存同步

在分布式环境下,缓存同步是一个重要的问题。Spring Cache 本身不提供分布式缓存同步的解决方案,但可以通过使用支持分布式缓存的实现(如 Redis)来实现缓存同步。

5.1 使用 Redis 作为缓存实现

Spring Data Redis 提供了对 Redis 的支持,可以很方便地将 Redis 作为缓存实现。以下是一个使用 Redis 作为缓存实现的配置示例:

import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;
import org.springframework.data.redis.cache.RedisCacheConfiguration;
import org.springframework.data.redis.cache.RedisCacheManager;
import org.springframework.data.redis.connection.RedisConnectionFactory;
import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
import org.springframework.data.redis.serializer.RedisSerializationContext;

import java.time.Duration;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
        RedisCacheConfiguration cacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
                .entryTtl(Duration.ofMinutes(10))
                .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(new GenericJackson2JsonRedisSerializer()));

        return RedisCacheManager.builder(redisConnectionFactory)
                .cacheDefaults(cacheConfiguration)
                .build();
    }
}
6. 缓存性能优化
6.1 缓存预热

缓存预热是指在系统启动时,预先将热点数据加载到缓存中,从而减少系统启动后的缓存穿透问题。可以通过自定义初始化方法来实现缓存预热。

import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.boot.CommandLineRunner;
import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
public class UserService implements CommandLineRunner {

    @Autowired
    private UserRepository userRepository;

    @Cacheable("users")
    public User getUserById(Long id) {
        // 模拟从数据库中获取用户信息
        return userRepository.findById(id).orElse(null);
    }

    @Override
    public void run(String... args) throws Exception {
        // 预加载热点数据到缓存
        userRepository.findAll().forEach(user -> getUserById(user.getId()));
    }
}
6.2 缓存穿透处理

缓存穿透是指查询一个不存在的数据,导致每次查询都会穿透缓存,直接访问数据库。可以通过在缓存中存储一个空值来解决缓存穿透问题。

import org.springframework.cache.annotation.Cacheable;
import org.springframework.stereotype.Service;

@Service
public class UserService {

    @Cacheable(value = "users", key = "#id", unless = "#result == null")
    public User getUserById(Long id) {
        // 模拟从数据库中获取用户信息
        return userRepository.findById(id).orElse(null);
    }
}
6.3 缓存雪崩处理

缓存雪崩是指在同一时间,大量缓存同时失效,导致大量请求直接访问数据库。可以通过设置随机的过期时间来避免缓存雪崩。

import com.github.benmanes.caffeine.cache.Caffeine;
import org.springframework.cache.CacheManager;
import org.springframework.cache.annotation.EnableCaching;
import org.springframework.cache.caffeine.CaffeineCacheManager;
import org.springframework.context.annotation.Bean;
import org.springframework.context.annotation.Configuration;

import java.util.concurrent.TimeUnit;

@Configuration
@EnableCaching
public class CacheConfig {

    @Bean
    public CacheManager cacheManager() {
        CaffeineCacheManager cacheManager = new CaffeineCacheManager("users");
        cacheManager.setCaffeine(caffeineCacheBuilder());
        return cacheManager;
    }

    Caffeine<Object, Object> caffeineCacheBuilder() {
        return Caffeine.newBuilder()
                .expireAfterWrite(10, TimeUnit.MINUTES)
                .maximumSize(100);
    }
}
7. 总结

Spring Cache 提供了一个强大的缓存抽象层,使得开发者可以在不改变业务逻辑的情况下,为方法调用添加缓存功能。通过使用 Spring Cache,可以显著提高应用程序的性能和响应速度。Spring Cache 支持多种缓存实现,并且提供了统一的注解和编程模型来管理缓存。通过合理配置和使用缓存注解,可以实现高效的缓存管理,提升系统的整体性能。

希望本文能帮助你更好地理解和使用 Spring Cache。如果有任何问题或需要进一步的解释,请随时提问。

  • 3
    点赞
  • 5
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值