gpt4 book ai didi

tomcat - 获取空白页面而不是自定义 404 错误页面?

转载 作者:行者123 更新时间:2023-11-28 23:24:16 26 4
gpt4 key购买 nike

我创建了包含一些消息的自定义错误页面。我在 web.xml 文件中添加了这个 html 页面。我把这个 html 文件放在 webapp/WEB-INF/error/404.html 下。但是运行后它显示空白页面,没有给出任何消息。请帮助我。

  <error-page>
<error-code>404</error-code>
<location>/WEB-INF/error/404.html</location>
</error-page>

最佳答案

我认为你的<location>标记必须是可通过 HTTP 访问的 URI。

例如,如果您的应用程序在 http://host.com/application/index.html 下运行然后将错误 HTML 放在 http://host.com/application/error.html你的location标记需要如下所示:

<error-page>
<error-code>404</error-code>
<location>/error.html</location>
</error-page>

另请注意,您可以省略 <error-code>在 Servlet API 3.0 之后(在 Tomcat 的情况下至少是版本 7)- 这允许您有一个一般错误页面。

关于tomcat - 获取空白页面而不是自定义 404 错误页面?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39201112/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com