Spring Boot返回json数据 视频地址:http://www.iqiyi.com/w_19rubxzsr5.html 博文参考:https://blog.csdn.net/linxingliang/article/details/51582294 Spring Boot完美使用FastJson解析Json数据 视频地址: http://baidu.iqiyi.com/watch/0669833408793393358.html 博文参考:https://my.oschina.ne…
在某些场景,你可能需要定制序列化输出,比如说,希望序列化采用之后采用"ID",而不是"id",你可以使用@JSONField这个Annotation. public class User { @JSONField(name="ID") public int getId() { ... } } User user = ...; JSON.toJSONString(user); // {"ID":234}…