springboot 配置404页面

Thymeleaf模板自定义静态error页面方法

在resource/templates/error下添加error.html页面(error替换成对应的错误码,404、401、500等,还可以用4xx、5xx等),springBoot会自动找到该页面作为错误页面,适合内嵌Tomcat或者war方式。SpringBoot错误视图提供了以下错误属性:

  • timestamp:错误发生时间;
  • status:HTTP状态吗;
  • error:错误原因;
  • exception:异常的类名;
  • message:异常消息(如果这个错误是由异常引起的);
  • errors:BindingResult异常里的各种错误(如果这个错误是由异常引起的);
  • trace:异常跟踪信息(如果这个错误是由异常引起的);
  • path:错误发生时请求的URL路径。

其他方式可以参见https://blog.csdn.net/IT_faquir/article/details/79521417

你可能感兴趣的:(学习笔记,Thymeleaf)