例如,我的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字段返回。默认情况下,应将它们从响应中排除。有什么想法吗?