有google 的gson gson.toJson(object) , gson.fromJson(filterStr, entityClass)
有alibaba 的fast.json JSON.parseObject() 讲json数据转成java对象,JSON.toJSONString() 序列化为json数据
有jackson
web-starter 中提供了json包
private static final ObjectMapper MAPPER = new ObjectMapper(); 通过常量的方式定义
在使用的地方ObjectMapper.writeValueAsString 序列化 readValue反序列化