要自定義 Tomcat 的錯誤頁面,可以按照以下步驟操作:
創建自定義錯誤頁面:在 web 應用的 WEB-INF 目錄下創建一個包含自定義錯誤頁面的文件夾(比如 error),在該文件夾下創建對應錯誤碼的 HTML 文件(比如 404.html、500.html 等)。
配置 web.xml 文件:在 web 應用的 WEB-INF 目錄下找到 web.xml 文件,在其中添加以下配置:
<error-page>
<error-code>404</error-code>
<location>/error/404.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/500.html</location>
</error-page>
這樣配置就會將 404 錯誤重定向到 /error/404.html 頁面,將 500 錯誤重定向到 /error/500.html 頁面。
<error-page>
<error-code>404</error-code>
<location>/error/404.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/error/500.html</location>
</error-page>
這樣配置就會使 Tomcat 使用 web 應用中定義的自定義錯誤頁面。
通過以上步驟,就可以自定義 Tomcat 的錯誤頁面了。