web.xml 中的错误页面不受支持的错误状态代码

发布于 2024-12-09 03:44:08 字数 405 浏览 0 评论 0原文

我们使用 weblogic 来部署我们的应用程序,到目前为止它工作正常,但是遇到了以下异常并且无法继续该应用程序。该网址似乎一直处于关闭状态。

web.xml 中错误页面的错误状态代码不受支持。

web.xml 中的代码如下所示,

<error-page>
    <error-code>100</error-code>
    <location>/jsp/main/http_error.jsp</location>
</error-page>

非常感谢对此的任何帮助,提前致谢。

We use weblogic to deploy our application and so far it was working fine, but encountered the following exception and not able to proceed with the application. The url seems to be down all the time.

<BEA-101024> Unsupported error status code for error-page in web.xml.

And the code in web.xml is as follows

<error-page>
    <error-code>100</error-code>
    <location>/jsp/main/http_error.jsp</location>
</error-page>

Any help on this is very much appreciated, thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

离旧人 2024-12-16 03:44:08

将 webapp dtd 更改或添加到 WEB.XML 中的较新版本。 Weblogic 对这些要求特别严格。然后您可以添加错误页面处理程序。

ciaooo

编辑:如何从 weblogic 获取 HTTP 100 ?如果我没记错的话,状态 100 是 CONTINUE,应该静默处理(不会产生错误)

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <servlet>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>it.bigmike.servlet.LoginServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>LoginLoginServlet</url-pattern>
  </servlet-mapping>  

  <error-page>
   <error-code>400</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>404</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>403</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>500</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>503</error-code>
   <location>/web/errore.html</location>
  </error-page>

EDIT2:这个 web.xml 在 weblogic 10.3 上非常适合我

Change or add the webapp dtd to a newer one in WEB.XML. Weblogic is particularly strict with theese. Then you can add error-page handlers.

ciaooo

EDIT: how do you get an HTTP 100 from weblogic ? If my memory is right status 100 is CONTINUE and should be handled silently (without producing an error)

<!DOCTYPE web-app PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN" "http://java.sun.com/dtd/web-app_2_3.dtd">
<web-app>
  <servlet>
    <servlet-name>LoginServlet</servlet-name>
    <servlet-class>it.bigmike.servlet.LoginServlet</servlet-class>
  </servlet>

  <servlet-mapping>
    <servlet-name>LoginServlet</servlet-name>
    <url-pattern>LoginLoginServlet</url-pattern>
  </servlet-mapping>  

  <error-page>
   <error-code>400</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>404</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>403</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>500</error-code>
   <location>/web/errore.html</location>
  </error-page>
  <error-page>
   <error-code>503</error-code>
   <location>/web/errore.html</location>
  </error-page>

EDIT2: this web.xml works perfectly for me on weblogic 10.3

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文