如何将Map对象转换为一个实体类对象


            com.alibaba
            fastjson
            1.1.46.sec01
        
JSON.parseObject(JSON.toJSONString(Map), Class cls);

另一种方法就是BeanUtils类中的

BeanUtils.populate(Object bean, Map properties)

 

转载于:https://www.cnblogs.com/du001011/p/11324836.html

你可能感兴趣的:(json)