如何使用Java中的Springfox防止JSON响应中未使用的值返回为null?

时间:2018-09-27 14:38:27

标签: java spring swagger springfox

例如,我的Spring boot Java API返回:

{
    "contact": "John Smith",
    "badgeNumber": "12345",
    "inProcess": true
}

然后我为Swagger添加了SpringFox依赖项,现在我的所有API都返回了:

{
    "contact": "John Smith",
    "badgeNumber": "12345",
    "supervisor": null,
    "inProcess": true,
    "employeeReference": null,
    "vacationDates": null
}

一切都不顺利,但是我不希望这些null字段返回。默认情况下,应将它们从响应中排除。有什么想法吗?

0 个答案:

没有答案