这篇文章给大家介绍SpringBoot 全局异常错误页面的示例分析,内容非常详细,感兴趣的小伙伴们可以参考借鉴,希望对大家能有所帮助。
成都创新互联公司主要从事成都网站制作、做网站、网页设计、企业做网站、公司建网站等业务。立足成都服务香坊,10年网站建设经验,价格优惠、服务专业,欢迎来电咨询建站服务:18980820575
org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-starter-thymeleaf
在template中创建error文件夹,在error文件夹中创建4xx.html 和 5xx.html
com.zhl.springbootexceptionjunit.controller.MyBasicErrorController
SpringBoot 出现异常时会查找 /error 视图, 如果没有则会根据错误码查找对应 error/400.html 之类的错误静态页面
此处重写ErrorController,实现/error 视图,根据错误类型,跳转至对应的视图,由于使用视图技术,需引用模板引擎(本例用thymeleaf)
package com.zhl.springbootexceptionjunit.controller;import org.springframework.boot.web.servlet.error.ErrorController;import org.springframework.http.HttpStatus;import org.springframework.http.ResponseEntity;import org.springframework.stereotype.Controller;import org.springframework.ui.Model;import org.springframework.web.bind.annotation.RequestMapping;import org.springframework.web.context.request.ServletWebRequest;import org.springframework.web.context.request.WebRequest;import javax.servlet.http.HttpServletRequest;import java.util.Date;import java.util.HashMap;import java.util.Map;/** * 定制ErrorController,目的是能使SpringBoot找到自己定制的错误页面 * 大部分的代码BasicController一致,关键点是修改错误页面的路径 */@Controller@RequestMapping(value = "/error")public class MyBasicErrorController implements ErrorController {@RequestMapping(produces = {"text/html"})//返回给浏览器 public String handlerError(HttpServletRequest request, Model model){ WebRequest webRequest = new ServletWebRequest(request);//对request进行包装,目的是能操作更多的方法 HttpStatus status = this.getStatus(request);//获取status String path = (String) webRequest.getAttribute("javax.servlet.error.request_uri", 0); String message = (String) webRequest.getAttribute("javax.servlet.error.message", 0);if(message.equals("")){ message = "No Available Message"; }//携带错误数据信息 model.addAttribute("timestamp", new Date()); model.addAttribute("statusCode", status.value()); model.addAttribute("error", status.getReasonPhrase()); model.addAttribute("message", message); model.addAttribute("path", path);int i = status.value() / 100;//判断是4xx还是5xx错误 if(i == 4){return "error/4xx";//使用自己定制的错误页面 }else if(i == 5){return "error/5xx";//使用自己定制的错误页面 }return null; }@RequestMapping//返回给客户端 public ResponseEntity
com.zhl.springbootexceptionjunit.controller.UsersController
@Controllerpublic class UsersController {@RequestMapping("showinfo")public String showinfo(){ String str=null; str.length();return "ok"; } }
测试1,运行时错误:
测试2:无资源的情况
关于SpringBoot 全局异常错误页面的示例分析就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。