Spring没有视图解析器但是普通的html

时间:2013-12-21 16:11:17

标签: java spring spring-mvc

我正在尝试将Spring配置为仅使用我的html文件而不是jsp视图解析器,但无法使其工作。我尝试了很多不同的配置,我只想在每次进入localhost:8080 /时重定向到/WEB-INF/views/index.html。现在我在tomcat控制台中的内容是:

  

org.springframework.web.servlet.PageNotFound - 找不到映射   在DispatcherServlet中使用URI [/WEB-INF/views/index.html]的HTTP请求   名称为“appServlet”。

这是我的servlet-context.xml代码段。

<beans:bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="WEB-INF/views/" />
    <beans:property name="suffix" value="" />
</beans:bean>
<view-controller path="/" view-name="index.html"/>

有什么建议我错过了吗?

编辑 - web.xml中:

<?xml version="1.0" encoding="UTF-8"?>

http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd“&GT;

<!-- The definition of the Root Spring Container shared by all Servlets 
    and Filters -->
<context-param>
    <param-name>contextConfigLocation</param-name>
    <param-value>/WEB-INF/spring/root-context.xml</param-value>
</context-param>
<filter>
    <filter-name>springSecurityFilterChain</filter-name>
    <filter-class>org.springframework.web.filter.DelegatingFilterProxy</filter-class>
</filter>
<filter-mapping>
    <filter-name>springSecurityFilterChain</filter-name>
    <url-pattern>/*</url-pattern>
</filter-mapping>

<!-- Creates the Spring Container shared by all Servlets and Filters -->
<listener>
    <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>

<!-- Processes application requests -->
<servlet>

    <servlet-name>appServlet</servlet-name>
    <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
    <init-param>
        <param-name>contextConfigLocation</param-name>
        <param-value>/WEB-INF/spring/appServlet/servlet-context.xml</param-value>
    </init-param>
    <load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
    <servlet-name>appServlet</servlet-name>
    <url-pattern>/</url-pattern>
</servlet-mapping>
<welcome-file-list>
    <welcome-file>/WEB-INF/views/index.html</welcome-file>
</welcome-file-list> 

3 个答案:

答案 0 :(得分:1)

我知道这是一个比较老的问题,所以这是给现在来这里的人的。只要文件路径正确,Spring就会自动配置为获取您的视图,因此您不必做任何spring webmvc configuration

我在Intellij中遇到了这个问题,只需要重新启动应用程序,错误就消失了。希望有人看到这个并且不会花很多时间在此上。

答案 1 :(得分:0)

此错误

org.springframework.web.servlet.PageNotFound - No mapping found for HTTP request with URI [/WEB-INF/views/index.html] in DispatcherServlet with name 'appServlet'.

告诉我们您实际上是去了以下地址

localhost:8080/WEB-INF/views/index.html

这显然毫无意义。

如果你想要

  

每次都有重定向到/WEB-INF/views/index.html   localhost:8080 /进入

将欢迎文件添加到部署描述符中。

<welcome-file-list>
    <welcome-file>WEB-INF/views/index.html</welcome-file>
</welcome-file-list>

答案 2 :(得分:0)

尝试在前缀中添加/。

<beans:bean
    class="org.springframework.web.servlet.view.InternalResourceViewResolver">
    <beans:property name="prefix" value="/WEB-INF/views/" />
    <beans:property name="suffix" value="" />
</beans:bean>
<view-controller path="/" view-name="index.html"/>