在我使用的java+spring应用程序中,来自第三方 RestTemplate
,我们用200个响应代码得到json中的错误响应。
例如
{
"errors": [{
"reason": "did not like the request",
"error": "BAD_REQUEST"
}]
}
我如何转换 BAD_REQUEST
到400整数表示。Apache HttpStatus
inte似乎没有提供任何接口来实现这一点。
在我使用的java+spring应用程序中,来自第三方 RestTemplate
,我们用200个响应代码得到json中的错误响应。
例如
{
"errors": [{
"reason": "did not like the request",
"error": "BAD_REQUEST"
}]
}
我如何转换 BAD_REQUEST
到400整数表示。Apache HttpStatus
inte似乎没有提供任何接口来实现这一点。
2条答案
按热度按时间lvjbypge1#
也许你可以用
org.springframework.http.HttpStatus
:或更安全:
up9lanfz2#
更加简洁和简短