赞
踩
导入maven包
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- </dependency>
spring boot配置文件
- spring.redis.host=127.0.0.1
- spring.redis.database=0
- spring.redis.username=
- spring.redis.password=
然后直接使用RedisTemplate里面的api去操作redis即可
- @Autowired
- private RedisTemplate<Object,Object> redisTemplate;
-
-
- public void set() {
- redisTemplate.opsForValue().set("test", "test");
- }
导入maven依赖
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <version>3.6.0</version>
- </dependency>
使用示例
- //1.new 一个Jedis对象
- Jedis jedis = new Jedis("192.168.11.220",6379);
- //检测连接
- System.out.println(jedis.ping());
- String set = jedis.set("key", "value");
- System.out.println(set);
运行结果
- PONG
- OK
更多请参照Jedis里面api
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。