1

我有一些控制器里面什么都没有,我只是将视图名设置为模型对象并返回它。在没有这些方法的情况下,SpringMVC是不是直接通过tile定义来做映射呢?如果是的话,你能告诉我怎么做吗?

提前致谢..

4

1 回答 1

0

您可以使用org.springframework.web.servlet.handler.SimpleUrlHandlerMapping&的组合org.springframework.web.servlet.mvc.UrlFilenameViewController

  • SimpleUrlHandlerMapping能够将 URL 直接路由到控制器,
  • UrlFilenameViewController将接收到的 URL 直接转换为视图名称(例如URL: /test.htmlView name: test)。

下面,所需的 Spring 配置:

    <?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:util="http://www.springframework.org/schema/util"
        xmlns:mvc="http://www.springframework.org/schema/mvc"
        xsi:schemaLocation="http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-3.2.xsd
            http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-3.2.xsd
            http://www.springframework.org/schema/mvc http://www.springframework.org/schema/mvc/spring-mvc-3.2.xsd
            http://www.springframework.org/schema/data/jpa http://www.springframework.org/schema/data/jpa/spring-jpa-1.2.xsd">

        <bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
            <property name="viewClass" value="org.springframework.web.servlet.view.tiles3.TilesView" />
            <property name="prefix" value="/WEB-INF/tiles/" />
            <property name="suffix" value=".tiles" />
            <property name="order" value="1" />
        </bean>

        <!-- For direct mapping between URL (i.e. index.html ←→ index) and the JSP 
            to render -->
        <bean id="urlFilenameViewController" class="org.springframework.web.servlet.mvc.UrlFilenameViewController" />

        <bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
            <property name="order" value="1" />
            <property name="mappings">
                <util:map>
                    <entry key="/test.html" value-ref="urlFilenameViewController" />
                </util:map>
            </property>
        </bean>
    </beans>

请注意<mcv:default-servlet-handler />Spring 配置中的标记,它可能会使上述配置失败(不返回 null 并且默认处理程序优先级设置Interger.MAX_VALUE为 Spring 文档中的说明)。

于 2013-09-30T11:59:42.370 回答