我正在尝试将我的应用程序的默认页面设置为index.html
我的文件夹结构为
我的调度程序-Servlet.xml是
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
xmlns:mvc="http://www.springframework.org/schema/mvc"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="
http://www.springframework.org/schema/beans
http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
http://www.springframework.org/schema/context
http://www.springframework.org/schema/context/spring-context-3.0.xsd
http://www.springframework.org/schema/mvc
http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">
<mvc:view-controller path="/" view-name="index"/>
<!-- <context:component-scan base-package="com.programcreek.helloworld.controller" /> -->
<mvc:annotation-driven />
<bean
class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix">
<value>/WEB-INF/views/</value>
</property>
<property name="suffix">
<value>.html</value>
</property>
</bean>
</beans>
我的web.xml是
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
<display-name>NewAppPoc</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<!-- <welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file> -->
</welcome-file-list>
<servlet>
<servlet-name>dispatcher</servlet-name>
<servlet-class>
org.springframework.web.servlet.DispatcherServlet
</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>dispatcher</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/dispatcher-servlet.xml
</param-value>
</context-param>
<listener>
<listener-class>
org.springframework.web.context.ContextLoaderListener
</listener-class>
</listener>
</web-app>
我正在尝试访问http://localhost:7001/NewAppPoc/,因此我收到404错误。我尝试了很多,但无法显示我的index.html我确信我做错了但无法找到什么。任何帮助将不胜感激。
答案 0 :(得分:2)
您正在解决此问题,因为没有可以处理/WEB-INF/views/index.html
请求的映射。
最快的解决方案是将 .html 转换为 .jsp 文件以及 InternalResourceViewResolver 的后缀也来自 .html 到 .jsp 。如果您需要保留html文件,则应使用配置中的mvc:resources标记将它们配置为静态资源。像
这样的东西<mvc:resources mapping="/index.html" location="/WEB-INF/views/" />
更长的解释
动态资源由映射到URL的servlet处理。现在初始请求会发生什么
<url-pattern>/</url-pattern>
/WEB-INF/views/index.html
,然后转发以由其他一些servlet处理/WEB-INF/views/index.html
的处理程序方法,此时它会失败。如果视图后缀设置为.jsp
,则事情可能会有所不同。
Servlet包含器具有一个servlet,该servlet映射到defualt注册的*.jsp
。例如,tomcat的 web.xml 您会看到 org.apache.jasper.servlet.JspServlet 映射到*.jsp
或{{ 1}},所以在这种情况下会呈现视图
答案 1 :(得分:0)
您的所有请求都映射到调度程序servlet,这就是它尝试使用视图解析程序解析index.jsp的视图的原因。理想情况下,您应该将静态资源放在不同的文件夹中,如下所示。
<mvc:resources mapping="/resources/**" location="/resources/static/" />
或为主路径添加控制器&#34; /&#34;返回&#39;索引&#39;那么它将被视图解析器正确解析。