java编程:jedis连接redis数据库实例
【摘要】 下载jar的地址 http://mvnrepository.com/artifact/redis.clients/jedis http://mvnrepository.com/artifact/org.apache.commons/commons-pool2
package demo;
import org.junit.Test;
import redis.c...
- 下载jar的地址
http://mvnrepository.com/artifact/redis.clients/jedis
http://mvnrepository.com/artifact/org.apache.commons/commons-pool2
package demo;
import org.junit.Test;
import redis.clients.jedis.Jedis;
import redis.clients.jedis.JedisPool;
import redis.clients.jedis.JedisPoolConfig;
/**
* jedis的测试
*/
public class mydemo { /** * 连接redis */ @Test public void demo1() { //连接redis Jedis jedis = new Jedis("localhost", 6379); //设置 jedis.set("name", "Tom"); //获取 String name = jedis.get("name"); System.out.println(name); //关闭 jedis.close(); } /** * redis连接池 */ @Test public void demo2() { // 获得连接池的配置对象 JedisPoolConfig config = new JedisPoolConfig(); // 最大连接数 config.setMaxTotal(30); // 最大空闲连接数 config.setMaxIdle(10); //获得连接池 JedisPool jedisPool = new JedisPool(config, "localhost", 6379); // 获得Redis对象 Jedis jedis = null; try { // 通过连接池获得连接 jedis = jedisPool.getResource(); jedis.set("name", "张三"); String name = jedis.get("name"); System.out.println(name); } catch (Exception e) { // TODO: handle exception e.printStackTrace(); } finally{ // 关闭redis连接 if (jedis != null) { jedis.close(); } if (jedisPool != null) { jedisPool.close(); } } }
}
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
文章来源: pengshiyu.blog.csdn.net,作者:彭世瑜,版权归原作者所有,如需转载,请联系作者。
原文链接:pengshiyu.blog.csdn.net/article/details/80213244
【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱:
cloudbbs@huaweicloud.com
- 点赞
- 收藏
- 关注作者
评论(0)