当前位置:   article > 正文

SpringBoot整合Redis_springboot 整合 redis

springboot 整合 redis

要在Spring Boot中整合Redis,可以按照以下步骤进行操作:

一、在pom.xml文件中添加Redis的依赖

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

 

二、在application.propertiesapplication.yml文件中配置Redis连接信息

  1. spring.redis.host=127.0.0.1
  2. spring.redis.port=6379
  3. spring.redis.password=

你需要根据实际情况修改Redis的主机地址和端口,以及密码。

三、创建一个Redis配置类,用于配置Redis连接和RedisTemplate

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.context.annotation.Bean;
  3. import org.springframework.context.annotation.Configuration;
  4. import org.springframework.data.redis.connection.RedisConnectionFactory;
  5. import org.springframework.data.redis.core.RedisTemplate;
  6. import org.springframework.data.redis.serializer.GenericJackson2JsonRedisSerializer;
  7. import org.springframework.data.redis.serializer.StringRedisSerializer;
  8. @Configuration
  9. public class RedisConfig {
  10. @Autowired
  11. private RedisConnectionFactory redisConnectionFactory;
  12. @Bean
  13. public RedisTemplate<String, Object> redisTemplate() {
  14. RedisTemplate<String, Object> redisTemplate = new RedisTemplate<>();
  15. redisTemplate.setConnectionFactory(redisConnectionFactory);
  16. // 设置key的序列化器
  17. redisTemplate.setKeySerializer(new StringRedisSerializer());
  18. // 设置value的序列化器
  19. redisTemplate.setValueSerializer(new GenericJackson2JsonRedisSerializer());
  20. // 设置hash key的序列化器
  21. redisTemplate.setHashKeySerializer(new StringRedisSerializer());
  22. // 设置hash value的序列化器
  23. redisTemplate.setHashValueSerializer(new GenericJackson2JsonRedisSerializer());
  24. return redisTemplate;
  25. }
  26. }

 此配置类创建了一个RedisTemplate bean,它将用于执行与Redis的交互操作。

四、在需要使用Redis的地方,注入RedisTemplate,并进行操作

  1. import org.springframework.beans.factory.annotation.Autowired;
  2. import org.springframework.data.redis.core.RedisTemplate;
  3. import org.springframework.stereotype.Service;
  4. @Service
  5. public class MyService {
  6. @Autowired
  7. private RedisTemplate<String, Object> redisTemplate;
  8. public void setValue(String key, Object value) {
  9. redisTemplate.opsForValue().set(key, value);
  10. }
  11. public Object getValue(String key) {
  12. return redisTemplate.opsForValue().get(key);
  13. }
  14. // 其他操作...
  15. }

 

以上示例中的MyService类中注入了RedisTemplate,并通过opsForValue()方法获取操作String类型值的ValueOperations对象,用于执行操作。

这样,你就可以使用Spring Boot整合Redis,进行Redis的相关操作了。

 

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

闽ICP备14008679号