Spring Boot中整合Redis

要在Spring Boot中整合Redis,你需要执行以下步骤:

  1. 添加依赖
    在你的pom.xml文件中添加以下依赖:
xml 复制代码
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>
  1. 配置Redis
    application.propertiesapplication.yml文件中配置Redis连接信息:
properties 复制代码
# application.properties
spring.redis.host=localhost
spring.redis.port=6379
spring.redis.password=your_password
spring.redis.database=0

或者

yaml 复制代码
# application.yml
spring:
  redis:
    host: localhost
    port: 6379
    password: your_password
    database: 0
  1. 使用RedisTemplate操作Redis
    在你的代码中,你可以使用RedisTemplate来操作Redis。首先,注入RedisTemplate
java 复制代码
@Autowired
private RedisTemplate<String, Object> redisTemplate;

然后,你可以使用redisTemplate的方法来操作Redis,例如:

java 复制代码
// 存储数据
redisTemplate.opsForValue().set("key", "value");

// 获取数据
Object value = redisTemplate.opsForValue().get("key");

// 删除数据
redisTemplate.delete("key");
  1. 自定义序列化方式(可选)
    默认情况下,Spring Boot使用JDK序列化方式。如果你想使用其他序列化方式,例如JSON,你可以配置RedisTemplate的序列化方式。例如,使用Jackson作为序列化方式:
java 复制代码
@Configuration
public class RedisConfig {

    @Bean
    public RedisTemplate<String, Object> redisTemplate(RedisConnectionFactory factory) {
        RedisTemplate<String, Object> template = new RedisTemplate<>();
        template.setConnectionFactory(factory);

        // 使用Jackson2JsonRedisSerializer来序列化和反序列化redis的value值
        Jackson2JsonRedisSerializer<Object> jacksonSeial = new Jackson2JsonRedisSerializer<>(Object.class);

        ObjectMapper objectMapper = new ObjectMapper();
        objectMapper.setVisibility(PropertyAccessor.ALL, JsonAutoDetect.Visibility.ANY);
        objectMapper.activateDefaultTyping(LaissezFaireSubTypeValidator.instance, ObjectMapper.DefaultTyping.NON_FINAL);
        jacksonSeial.setObjectMapper(objectMapper);

        // 设置value的序列化规则和 key的序列化规则
        template.setValueSerializer(jacksonSeial);
        template.setKeySerializer(new StringRedisSerializer());

        template.afterPropertiesSet();
        return template;
    }
}

现在你已经成功整合了Spring Boot和Redis,可以开始使用Redis来存储和操作数据了。

相关推荐
S***267515 小时前
基于SpringBoot和Leaflet的行政区划地图掩膜效果实战
java·spring boot·后端
JIngJaneIL16 小时前
社区互助|社区交易|基于springboot+vue的社区互助交易系统(源码+数据库+文档)
java·数据库·vue.js·spring boot·论文·毕设·社区互助
晚风吹人醒.16 小时前
缓存中间件Redis安装及功能演示、企业案例
linux·数据库·redis·ubuntu·缓存·中间件
这是程序猿16 小时前
基于java的ssm框架旅游在线平台
java·开发语言·spring boot·spring·旅游·旅游在线平台
i***t91917 小时前
基于SpringBoot和PostGIS的云南与缅甸的千里边境线实战
java·spring boot·spring
k***082917 小时前
【监控】spring actuator源码速读
java·spring boot·spring
一 乐17 小时前
应急知识学习|基于springboot+vue的应急知识学习系统(源码+数据库+文档)
数据库·vue.js·spring boot
vx_dmxq21117 小时前
【PHP考研互助系统】(免费领源码+演示录像)|可做计算机毕设Java、Python、PHP、小程序APP、C#、爬虫大数据、单片机、文案
java·spring boot·mysql·考研·微信小程序·小程序·php
5***g29817 小时前
新手如何快速搭建一个Springboot项目
java·spring boot·后端
itmrl18 小时前
Redis高可用方案之集群模式搭建
redis