在我的应用程序(spring-boot)中,我正在验证标头之一,如果验证失败,我将返回错误。但是当返回错误时(如果标头验证失败),我不想返回数据字段(为空)。
目前它正在返回:
{
"errors": [
{
"message": "My exception message",
"locations": [],
"path": [
"dbProp"
],
"extensions": {
"errorType": "Not Found",
}
}
],
"data": {
"dbProp": null
}
}
但我想返回(没有数据字段):
{
"errors": [
{
"message": "My exception message",
"locations": [],
"path": [
"dbProp"
],
"extensions": {
"errorType": "Not Found",
}
}
]
}