背景
今天在做SSM框架整合时,又遇到了404问题。这次不是因为自己的路径写错了,所以检查了好长时间路径,都没有发现问题。
原因
在整合SSM框架时,需要在web.xml文件中配置分发器。如果不配置分发器,就会导致请求无法找到对应的action,最终报404错误。
需要在web.xml文件中做如下配置:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_4_0.xsd"
version="4.0">
<servlet>
<servlet-name>dispatcherServlet</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<init-param>
<param-name>contextConfigLocation</param-name>
<param-value>classpath:applicationContext.xml</param-value>
</init-param>
</servlet>
<servlet-mapping>
<servlet-name>dispatcherServlet</servlet-name>
<url-pattern>*.action</url-pattern>
</servlet-mapping>
</web-app>
解决方法
遇到bug,可以对照之前的成功案例,通过对照成功案例来明确自己哪里写错了。