Jedis的hget方法实战
解决方法:
dbindex 数据库索引,相当数据库的名称
mapName map的名字,相当表名
key map里面的key
public static String get(int dbindex,String mapName,String key){
String value = null;
Jedis jedis = null;
try {
jedis = getJedis();
jedis.select(dbindex);
value = jedis.hget(mapName,key);
} catch (Exception e) {
e.printStackTrace();
} finally {
// 返还到连接池
if(jedis!=null)close(jedis);
}
return value;
}
其中getJedis()方法参考:http://yayihouse.com/yayishuwu/chapter/1361