2021
01-29
01-29
解决springboot bean中大写的字段返回变成小写的问题
例如我的bean中有以下4个字段privateStringcode;privateString_TOKENUUMS;privateStringTGC;privateStringU;在返回的json里只会显示{“code”:“xx”,“tgc”:“xx”,“u”:“xx”}大小会变成小写,特殊符号开头的字段都不会显示,其原因是因为springboot在进行序列化和反序列时对字段进行了处理。解决方案是:importcom.fasterxml.jackson.annotation.JsonProperty;在get方法上加上该注解@JsonPropertyprivateStringco...
继续阅读 >