Spring Boot:自定义 Whitelabel 错误页面

科技网编2023-08-15 15:161700

一、概述
在本文中,我们将研究如何禁用和自定义 Spring Boot 应用程序的默认错误页面,因为正确的错误处理描述了专业性和质量工作。

2.禁用白标错误页面

首先,让我们看看如何通过将server.error.whitelabel.enabled属性设置为false 来完全禁用白标错误页面

server.error.whitelabel.enabled=false

将此条目添加到 application.properties文件将禁用错误页面并显示源自底层应用程序容器(例如 Tomcat)的简洁页面

评论区