新网创想网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
今天就跟大家聊聊有关使用jdk1.8实现将list根据指定的值去分组,可能很多人都不太了解,为了让大家更加了解,小编给大家总结了以下内容,希望大家根据这篇文章可以有所收获。
10年积累的成都网站建设、网站设计经验,可以快速应对客户对网站的新想法和需求。提供各种问题对应的解决方案。让选择我们的客户得到更好、更有力的网络服务。我虽然不认识你,你也不认识我。但先网站制作后付款的网站建设流程,更有贵溪免费网站建设让你可以放心的选择与我们合作。Map> commentList = list.stream().collect(Collectors.groupingBy(CommentQuery::getNewsId)); for (Map.Entry > entry : commentList.entrySet()) { String key = HOT_LIST_KEY + entry.getKey(); if (entry.getValue().isEmpty()) { stringRedisTemplate.opsForValue().set(key, ""); } else { Gson gson = new Gson(); String json = gson.toJson(entry.getValue()); //先删除redis数据然后在插入新的牛评数据 stringRedisTemplate.delete(key); stringRedisTemplate.opsForValue().set(key, json); stringRedisTemplate.expire(key, 1, TimeUnit.DAYS); } }