DTO & JSON 互相转换

import com.alibaba.fastjson.JSON;

// dto 转 json
String json = JSON.toJSONString(dto)

// json 转 dto
DTO dto = JSON.parseObject(str, DTO.class)

你可能感兴趣的:(DTO & JSON 互相转换)