博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理

json转对象,奇怪的映射

Posted on 2019-01-07 13:45  和风细雨汪汪  阅读(206)  评论(0编辑  收藏  举报

偶然看见此代码,记录下,将来可能会用到。

ObjectMapper objectMapper = new ObjectMapper();

if (StringUtils.isNotEmpty(variablesJson)) {
variables = objectMapper.readValue(variablesJson, HashMap.class);
}