Spring REST Service: how to configure to remove null objects in json response

前端 未结 10 1257
隐瞒了意图╮
隐瞒了意图╮ 2020-11-28 07:06

I have a spring webservice that returns a json response. I\'m using the example given here to create the service: http://www.mkyong.com/spring-mvc/spring-3-mvc-and-json-exam

10条回答
  •  感动是毒
    2020-11-28 08:01

    @JsonSerialize(include=JsonSerialize.Inclusion.NON_EMPTY)
    public class Shop {
        //...
    }
    

    for jackson 2.0 or later use @JsonInclude(Include.NON_NULL)

    This will remove both empty and null Objects.

提交回复
热议问题