struts2+spring 配置404和500错误页面

Posted 开心的小l

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了struts2+spring 配置404和500错误页面相关的知识,希望对你有一定的参考价值。

最近碰到一个问题,在浏览器随便输入地址应该会跳转到404或者500界面,搞了半天才发现是自己配置的问题。

简单介绍一下404 和500以及其他的错误界面应该是在web.xml中配置好的 如下:

<error-page>

  <error-code>500</error-code>

  <location>/common/error.jsp</location>

</error-page>

<error-page>

  <error-code>404</error-code>

  <location>/common/404.jsp</location>

</error-page>

<error-page>

  <error-code>403</error-code>

  <location>/common/403.jsp</location>

</error-page>

上面配置到到web.xml中应该就没问题了,但是struts2还有一个开发模式默认是开启的,我们需要在config目录下增加一个struts.properties文件:文件里面的内容只有一行struts.devMode=false关闭这个开发模式,所有报错都会只想500页面了。

以上是关于struts2+spring 配置404和500错误页面的主要内容,如果未能解决你的问题,请参考以下文章

spring与struts2整合出现错误HTTP Status 500 - Unable to instantiate Action

struts2中上传文件时报404错误

struts2 web.xml配置访问404

weblogic部署struts2项目訪问action404错误

zbb20180921 springboot 全局异常处理 404 500

Struts2和Spring的整合,打开页面提示404错误