SpringBoot集成Redis

2022-05-13 11:27:33 浏览数 (1)

SpringBoot整合Redis

1 添加redis的起步依赖

代码语言:javascript复制
<!-- 配置使用redis启动器 -->
<dependency>
    <groupId>org.springframework.boot</groupId>
    <artifactId>spring-boot-starter-data-redis</artifactId>
</dependency>

2 配置redis的连接信息

代码语言:javascript复制
#Redis
spring.redis.host=127.0.0.1
spring.redis.port=6379

3 注入RedisTemplate测试redis操作

代码语言:javascript复制
@RunWith(SpringRunner.class)
@SpringBootTest(classes = SpringbootJpaApplication.class)
public class RedisTest {
    //导入jps操作类
    @Autowired
    private UserRepository userRepository;
    //当我们在pom里配置了redis时候springboot会为我们自动生成一个模板到容器
    //如果我们需要使用时候直接注入就好
    @Autowired
    private RedisTemplate<String, String> redisTemplate;

    @Test
    public void test() throws JsonProcessingException {
        //从redis缓存中获得指定的数据
        String userListData = redisTemplate.boundValueOps("user.findAll").get();
        //如果redis中没有数据的话
        if(null==userListData){
            //查询数据库获得数据
            List<User> all = userRepository.findAll();
            //转换成json格式字符串
            ObjectMapper om = new ObjectMapper();
            userListData = om.writeValueAsString(all);
            //将数据存储到redis中,下次在查询直接从redis中获得数据,不用在查询数据库
            redisTemplate.boundValueOps("user.findAll").set(userListData);
            System.out.println("===============从数据库获得数据===============");
        }else{
            System.out.println("===============从redis缓存中获得数据===============");
        }

        System.out.println(userListData);

    }

}

0 人点赞