AbstractErrorController

Posted lijinping321

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了AbstractErrorController相关的知识,希望对你有一定的参考价值。

AbstractErrorController提供了多个方法可以从 request 中获取错误信息,包含以下信息:

timestamp,错误发生的时 间;
status,对应于HTTP Status,如 404;
error,错误消息,如 Bad Request、Not Found;

message,详细错误信息;
exception,如果应用抛出有异常,exception是字符串 ,代表异常的类名,如

org.springframework.web.method.annotation.MethodArgumentTypeMismatchException;

path,请求的URI;

errors, @Validated 校验错误的时候,校验结果信息放到这里

 

 

以上是关于AbstractErrorController的主要内容,如果未能解决你的问题,请参考以下文章