我有一些控制器,其中没有任何东西,我只是将viewname设置为模型对象并返回它。在没有这些方法的情况下,SpringMVC是否直接通过tile定义进行映射?如果是,请告诉我该怎么做。
先谢谢..
答案 0 :(得分:0)
您可以结合使用org.springframework.web.servlet.handler.SimpleUrlHandlerMapping
& org.springframework.web.servlet.mvc.UrlFilenameViewController
:
SimpleUrlHandlerMapping
可以将URL直接路由到控制器,UrlFilenameViewController
将收到的网址直接转换为视图名称(例如URL: /test.html
→View 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>
注意Spring配置中的<mcv:default-servlet-handler />
标记,它可以使上述配置失败(不返回null,并将默认处理程序优先级设置为Interger.MAX_VALUE
,如Spring文档中所述)。