一、使用场景
把一个map转换成json字符串后存放在Redis中,然后在redis中取出json字符串,再把字符串转变成原来的Map文章来源:https://www.toymoban.com/news/detail-820261.html
二、具体实现
1.1 Map转成String
这里使用是阿里巴巴fastjson文章来源地址https://www.toymoban.com/news/detail-820261.html
Map<String, Object> reportData = dssDashboardService.getReportData(yearMonth, DssDef.DssDashboardType.MONTH_INDEX.getCode());
String jsonString = JSON.toJSONString(reportData);
1.2 String转成Map
Object object = redisTemplate.opsForValue().get(key);
reportData = JSON.parseObject((String) object, Map.class);
到了这里,关于Map转成String,String 转换成Map的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!