弹簧启动自定义 http 错误响应?
2022-09-02 03:16:12
如果 Spring Boot Web 应用程序中发生异常,如何自定义响应状态代码和响应正文中的数据?
我创建了一个Web应用程序,如果由于某些不良的内部状态而发生意外情况,则会引发自定义异常。因此,触发错误的请求的响应正文如下所示:
HTTP/1.1 500 Internal Server Error
{
"timestamp": 1412685688268,
"status": 500,
"error": "Internal Server Error",
"exception": "com.example.CustomException",
"message": null,
"path": "/example"
}
现在,我想更改状态代码并在响应正文中设置字段。我脑海中闪过的一个解决方案是这样的:
@ControllerAdvice
class CustomResponseEntityExceptionHandler extends ResponseEntityExceptionHandler {
@ExceptionHandler
@ResponseStatus(HttpStatus.BAD_REQUEST)
@ResponseBody
ErrorMessage handleBadCredentials(CustomException e) {
return new ErrorMessage("Bad things happened");
}
}
@XmlRootElement
public class ErrorMessage(
private String error;
public ErrorMessage() {
}
public ErrorMessage(String error) {
this.error = error;
}
public String getError() {
return error;
}
public void setError(String error) {
this.error = error;
}
)
然而,这创造了(正如怀疑的那样)一个完全不同的反应:
HTTP/1.1 400 Bad Request
{
"error": "Bad things happened"
}