当前位置:   article > 正文

Spring boot 集成redis

Spring boot 集成redis

一、使用spring bootspring-boot-starter-data-redis

导入maven包

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

spring boot配置文件

  1. spring.redis.host=127.0.0.1
  2. spring.redis.database=0
  3. spring.redis.username=
  4. spring.redis.password=

然后直接使用RedisTemplate里面的api去操作redis即可

  1. @Autowired
  2. private RedisTemplate<Object,Object> redisTemplate;
  3. public void set() {
  4. redisTemplate.opsForValue().set("test", "test");
  5. }

二,使用jedis方式

导入maven依赖

  1. <dependency>
  2. <groupId>redis.clients</groupId>
  3. <artifactId>jedis</artifactId>
  4. <version>3.6.0</version>
  5. </dependency>

使用示例

  1. //1.new 一个Jedis对象
  2. Jedis jedis = new Jedis("192.168.11.220",6379);
  3. //检测连接
  4. System.out.println(jedis.ping());
  5. String set = jedis.set("key", "value");
  6. System.out.println(set);

运行结果

  1. PONG
  2. OK

更多请参照Jedis里面api

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

闽ICP备14008679号