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

Posted 敲代码的卡卡罗特

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了@jsonProperty 实现返回自定义属性名字相关的知识,希望对你有一定的参考价值。

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

 

可以用@jsonProperty 来实现

 

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

 

以上是关于@jsonProperty 实现返回自定义属性名字的主要内容,如果未能解决你的问题,请参考以下文章