1.序列化(JavaBean --> json)时配置到对应字段的get()方法上 2.反序列化(json --> JavaBean)时配置到对应字段的set()方法上
Jackson的@JsonProperty解决
@JsonProperty("_authorities") private List<SimpleGrantedAuthority> authorities;
链接:https://www.jianshu.com/p/38d0f6d7715c