@jsonProperty 实现返回自定义属性名字

  比如说前端需要返回userPic 这个字段,但是我们数据库定义的是pic字段。

 

可以用@jsonProperty 来实现

 

public class User{
     @JsonProperty("pic")  
     String userPic; 
}