我的应用已正确部署,但收到404错误。 无法找到正在发生的事情。 在此已部署表示将我的webapp文件夹指向计算机中的位置。
使用的网址:
本地主机:8080 / studentspringmvc /
的web.xml
<?xml version="1.0" encoding="UTF-8"?>
<web-app version="2.5" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd">
<display-name>Spring MVC Application</display-name>
<context-param>
<param-name>contextConfigLocations</param-name>
<param-value>classpath*:applicationContext.xml</param-value>
</context-param>
<servlet>
<servlet-name>mvc-dispatcher</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>mvc-dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
</welcome-file-list>
</web-app>
现在我在conf / Catalina / localhost文件夹中添加了studentspringmvc.xml
studentspringmvc.xml
<Context path="/studentspringmvc"
docBase="/home/shoaib/Documents/myprograms/studentspringmvc/src/main/webapp"
reloadable="true"
/>
无法找到为什么至少没有加载index.html。
答案 0 :(得分:1)
您的调度程序servlet映射到/
。这意味着每个 URL都映射到此servlet(包括index.html)。要确保仍然提供静态文件,您需要按照the documentation中的说明启用默认的servlet处理程序:
<mvc:default-servlet-handler/>