Redis和SpringBoot整合

Redis和SpringBoot整合,第1张

SpringBoot 中一般使用 RedisTemplate 提供的方法来 *** 作 Redis


那么使用 SpringBoot 整合 Redis 需要那些步骤呢?

 

文章目录
  • 前言

  • 一、pandas是什么?


  • 二、使用步骤

    • 1.引入库
    • 2.读入数据
  • 总结

前言 1 JedisPoolConfig ( 这个是配置连接池 ) 2 RedisConnectionFactory这个是配置连接信息,这里的 RedisConnectionFactory 是一个接 口,我们需要使用它的实现类,在 SpringD Data Redis 方案中提供了以下四种工厂模型:
  • JredisConnectionFactory
  • JedisConnectionFactory
  • LettuceConnectionFactory
  • SrpConnectionFactory

一、POM中导入依赖


org.springframework.boot
spring-boot-starter-data-redis

二、 1.yaml配置

spring:
redis:
host: 127.0.0.1
port: 6379
password: 123456
jedis:
pool:
max-active: 8
max-wait: -1ms
max-idle: 500
min-idle: 0
lettuce:
shutdown-timeout: 0ms
2.测试
@SpringBootTest 
class SpringbootRedisApplicationTests {
@Autowired private RedisTemplate redisTemplate;
@Test void contextLoads() { 
redisTemplate.opsForValue().set("myKey","myValue"); System.out.println(redisTemplate.opsForValue().get("myKey")); 
} 
}

总结

好了,这就是简单的redis与springboot整合

 

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/579575.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-04-11
下一篇 2022-04-11

发表评论

登录后才能评论

评论列表(0条)

保存