找回密码
 立即注册
查看: 355|回复: 0

[后端] SpringBoot整合redis实现注解@Cacheable 缓存

[复制链接]

224

主题

0

回帖

773

积分

高级会员

积分
773
发表于 2024-6-4 12:11:27 | 显示全部楼层 |阅读模式
本帖最后由 御坂主机 于 2024-6-6 20:56 编辑

1. 简介

在现代应用开发中,缓存是提升性能和减轻数据库负载的重要手段。SpringBoot通过Spring Cache模块提供了便捷的缓存支持,而Redis作为高性能的内存数据库,常常被用作缓存存储。本文将介绍如何在SpringBoot中整合Redis,并使用@Cacheable注解实现缓存功能。

1.1 环境准备

在开始之前,需要确保已经安装了以下环境:
1. JDK 8或以上版本
2. Maven或Gradle构建工具
3. Redis服务器

2. 引入依赖

首先,需要在SpringBoot项目中引入相关依赖。以Maven为例,在pom.xml中添加以下依赖:

  1.     <dependency>
  2.         <groupId>org.springframework.boot</groupId>
  3.         <artifactId>spring-boot-starter-data-redis</artifactId>
  4.     </dependency>
  5.     <dependency>
  6.         <groupId>org.springframework.boot</groupId>
  7.         <artifactId>spring-boot-starter-cache</artifactId>
  8.     </dependency>
  9.     <dependency>
  10.         <groupId>org.apache.commons</groupId>
  11.         <artifactId>commons-pool2</artifactId>
  12.     </dependency>
复制代码


3. 配置Redis

在application.properties文件中添加Redis的相关配置:

  1.     spring.redis.host=localhost
  2.     spring.redis.port=6379
  3.     spring.cache.type=redis
复制代码


4. 启用缓存

在SpringBoot的主类(通常是带有@SpringBootApplication注解的类)上添加@EnableCaching注解,以启用缓存支持:

  1.     import org.springframework.boot.SpringApplication;
  2.     import org.springframework.boot.autoconfigure.SpringBootApplication;
  3.     import org.springframework.cache.annotation.EnableCaching;

  4.     @SpringBootApplication
  5.     @EnableCaching
  6.     public class Application {
  7.         public static void main(String[] args) {
  8.             SpringApplication.run(Application.class, args);
  9.         }
  10.     }
复制代码


5. 配置Redis缓存管理器

创建一个配置类,用于配置Redis缓存管理器:

  1.     import org.springframework.cache.CacheManager;
  2.     import org.springframework.cache.annotation.EnableCaching;
  3.     import org.springframework.context.annotation.Bean;
  4.     import org.springframework.context.annotation.Configuration;
  5.     import org.springframework.data.redis.cache.RedisCacheConfiguration;
  6.     import org.springframework.data.redis.cache.RedisCacheManager;
  7.     import org.springframework.data.redis.connection.RedisConnectionFactory;
  8.     import org.springframework.data.redis.serializer.RedisSerializationContext;
  9.     import org.springframework.data.redis.serializer.RedisSerializer;
  10.     import org.springframework.data.redis.serializer.StringRedisSerializer;

  11.     import java.time.Duration;

  12.     @Configuration
  13.     @EnableCaching
  14.     public class RedisConfig {

  15.         @Bean
  16.         public CacheManager cacheManager(RedisConnectionFactory redisConnectionFactory) {
  17.             RedisCacheConfiguration redisCacheConfiguration = RedisCacheConfiguration.defaultCacheConfig()
  18.                     .entryTtl(Duration.ofHours(1))
  19.                     .serializeKeysWith(RedisSerializationContext.SerializationPair.fromSerializer(new StringRedisSerializer()))
  20.                     .serializeValuesWith(RedisSerializationContext.SerializationPair.fromSerializer(RedisSerializer.json()));
  21.             return RedisCacheManager.builder(redisConnectionFactory)
  22.                     .cacheDefaults(redisCacheConfiguration)
  23.                     .build();
  24.         }
  25.     }
复制代码


6. 使用@Cacheable注解

在需要缓存的方法上使用@Cacheable注解。假设有一个Service类,提供了获取用户信息的方法:

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

  3.     @Service
  4.     public class UserService {

  5.         @Cacheable(value = "user", key = "#userId")
  6.         public User getUserById(Long userId) {
  7.             // 模拟从数据库中获取用户信息
  8.             User user = new User();
  9.             user.setId(userId);
  10.             user.setName("User" + userId);
  11.             return user;
  12.         }
  13.     }
复制代码


在上述代码中,@Cacheable(value = "user", key = "#userId")表示将方法的返回结果缓存到名称为"user"的缓存中,缓存的键是userId。

7. 测试缓存功能

可以通过编写测试用例或运行应用程序进行测试。多次调用getUserById方法时,第一次调用会从数据库中获取数据,之后的调用将直接从缓存中获取数据。

8. 总结

本文介绍了如何在SpringBoot中整合Redis,并使用@Cacheable注解实现缓存功能。通过引入依赖、配置Redis和缓存管理器、启用缓存和使用注解,可以轻松实现缓存功能,从而提升应用性能。希望本文对您理解和应用SpringBoot缓存有所帮助。




------------------------------------------------------------------------------------------------------------------------------------------

========  御 坂 主 机  ========

>> VPS主机 服务器 前沿资讯 行业发布 技术杂谈 <<

>> 推广/合作/找我玩  TG号 : @Misaka_Offical <<

-------------------------------------------------------------------------------------------------------------------------------------------


您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

联系站长|Archiver|手机版|小黑屋|主机论坛

GMT+8, 2025-4-4 13:36 , Processed in 0.064522 second(s), 24 queries .

Powered by 主机论坛 HostSsss.Com

HostSsss.Com

快速回复 返回顶部 返回列表