JSONObject.toBean中日期格式数据转换失效的解决办法!

前端之家收集整理的这篇文章主要介绍了JSONObject.toBean中日期格式数据转换失效的解决办法!前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

在Action中我们将JSON格式数据转换为查询BEAN时,通常采用以下方法

JSONObject jsonObject = readJson(request);

jsonConfig.setRootClass(User.class);

User user=(User)JSONObject.toBean(jsonObject,jsonConfig);

但是转换时会发现,如果传入格式为“2011-01-02”格式的时间参数时

转换后对应的时间参数会变成当前系统时间

查询日志中会发现:Can't transform property 'birthday' from java.lang.String into java.util.Date. Will register a default Morpher

这是因为JSONObject不认识“2011-01-02”格式的时间

这时我们可以采用以下方式解决

JSONObject jsonObject = readJson(request);

jsonConfig.setRootClass(User.class);

JSONUtils.getMorpherRegistry().registerMorpher(new DateMorpher(new String[] {"yyyy-MM-dd","yyyy-MM-dd HH:mm:ss"}));

User user=(User)JSONObject.toBean(jsonObject,jsonConfig);

原文链接:https://www.f2er.com/json/290789.html

猜你在找的Json相关文章