1

如何使用纯 html 页面构建 Spring MVC 应用程序?当我在我的 tomcat 7 服务器上部署 jsps 时,它能够很好地映射页面。但是对于 html,页面不会显示。我收到 404 错误。我怎么不能在spring mvc中使用jsps?请详细说明我需要采取的步骤。

先感谢您。

4

3 回答 3

1

Thymeleaf 将成为你的朋友 http://www.thymeleaf.org/

于 2013-10-04T00:13:34.733 回答
1

在 Spring MVC 中,所有请求都通过 FrontController - DispatcherServlet

在那里,您需要告诉 Spring 在您的情况下允许 jsp 和 html

例子

dispatcher-servlet.xml:

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
   xmlns:p="http://www.springframework.org/schema/p"
   xmlns:aop="http://www.springframework.org/schema/aop"
   xmlns:tx="http://www.springframework.org/schema/tx"
   xsi:schemaLocation="http://www.springframework.org/schema/beans           http://www.springframework.org/schema/beans/spring-beans-3.0.xsd
   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-3.0.xsd
   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-3.0.xsd">

    <bean class="org.springframework.web.servlet.mvc.support.ControllerClassNameHandlerMapping"/>

    <bean id="urlMapping" class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
        <property name="mappings">
            <props>
                <prop key="index.htm">indexController</prop>
            </props>
        </property>
    </bean>

    <bean id="viewResolver"
          class="org.springframework.web.servlet.view.InternalResourceViewResolver"
          p:prefix="/WEB-INF/jsp/"
          p:suffix=".jsp" />

    <bean name="indexController"
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"
          p:viewName="index" />
    <bean name="/*.htm" class="controller.MyController"/>
</beans>
于 2013-10-04T06:39:58.707 回答
0

请将视图解析器后缀更改为 .html,以便 viewResolver 能够呈现您的视图。

于 2013-10-04T07:52:44.250 回答