自定义404 5xx 页面,在文件夹下添加一个error的文件夹,里面添加对应的html
根据报错显示对应的html
自定义显示,在返回的信息中,浏览器返回的是json,此时包含了5个消息,时间、错误信息、堆栈、路径、状态码,只要是json信息都可以取到,通过thymeleaf里的th:text="${..........}"来获取
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>Title</title> </head> <body> <h1>404</h1> message:<p th:text="${message}"></p> trace:<p th:text="${trace}"></p> timestamp:<p th:text="${timestamp}"></p> path:<p th:text="${path}"></p> status:<p th:text="${status}"></p> </body> </html>