码迷,mamicode.com
首页 > 编程语言 > 详细

java Redis读取数据方法

时间:2018-05-11 20:28:52      阅读:161      评论:0      收藏:0      [点我收藏+]

标签:gets   java   数据   close   color   ken   get   ati   map   

1.

    public Map<String, List<CellInfo1>> getSceneCoverCellForRedis(){
        Jedis jedis = null;
        Map<String, List<CellInfo1>> cellMap= null;
        try {
            jedis = jedisPool.getResource();
            String jsonStr= jedis.get(DbKeys.WB_COVERAREA_4);
            Type type = new TypeToken<Map<String,List<CellInfo1>>>() {}.getType(); 
            Gson gson = new Gson();
            cellMap= gson.fromJson(jsonStr,type);
            jedis.close();
            jedis= null;
        } catch (Exception e) {
            if(jedis != null){
                jedis.close();
            }
            e.printStackTrace();
        }
        return cellMap;
    }

2.

public class DbKeys {

......

public final static String WB_COVERAREA_4="wb_coverarea_4";

}

java Redis读取数据方法

标签:gets   java   数据   close   color   ken   get   ati   map   

原文地址:https://www.cnblogs.com/baixiuhua/p/9025555.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!