我在我的项目中使用spring框架,
这是我的 web.xml 的一部分:
<servlet>
<servlet-name>SpringMvcServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>
/WEB-INF/servlet-context.xml
</param-value>
</init-param>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>SpringMvcServlet</servlet-name>
<url-pattern>/*</url-pattern>
</servlet-mapping>
<filter>
<filter-name>httpMethodFilter</filter-name>
<filter-class>org.springframework.web.filter.HiddenHttpMethodFilter</filter-class>
</filter>
<filter-mapping>
<filter-name>httpMethodFilter</filter-name>
<url-pattern>/*</url-pattern>
</filter-mapping>
<error-page>
<error-code>404</error-code>
<location>/system/404.html</location>
</error-page>
<error-page>
<error-code>500</error-code>
<location>/system/500.html</location>
</error-page>
并配置:
<mvc:resources mapping="/system/**" location="/WEB-INF/pages/system/" />
但是我在日志中发现了很多错误,一些请求是这样的:
- 发布 /index.php
- 发布 /notexists.html
它们在我的服务器中不存在,因此将调用“/system/404.html”,但 mvc:resources 不接受 POST 方法,因此它将返回 500 错误。
如何解决?或解决?
谢谢