Spring MVC资源绑定视图解析器
-
ResourceBundleViewResolver
使用属性文件中定义的视图bean来解析视图名称
ResourceBundleViewResolver-servlet.xml
<bean class="org.springframework.web.servlet.view.ResourceBundleViewResolver">
<property name="basename" value="views" />
</bean>
-
basename
是指携带视图的资源束的名称,资源束的默认名称是views.properties
, - 可以使用
basename
属性重写(也就是将views修改为其它名称,对应的views.properties
文件名称也要修改)。
views.properties
hello.(class)=org.springframework.web.servlet.view.JstlView
hello.url=/WEB-INF/jsp/hello.jsp
- 对于
/hello
请求,DispatcherServlet
会将请求转发到由views.properties
中定义的hello对
应的hello.jsp
- 这里
“hello”
是要匹配的视图名称。class
指定视图类型,url
是视图的位置
Spring MVC资源绑定视图解析器样例
- 创建一个名称为 ResourceBundleViewResolver 的动态WEB项目
- 在 com.yiibai.springmvc 包下创建一个Java类HelloController。
- 在jsp子文件夹下创建一个视图文件:hello.jsp
- 在src文件夹下创建属性文件views.properties
- 下载JSTL库jstl.jar。 把它放在 CLASSPATH中
HelloController.java
package com.yiibai.springmvc;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;
@Controller
@RequestMapping("/hello")
public class HelloController{
@RequestMapping(method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello, Spring MVC资源绑定视图解析器!");
return "hello";
}
}
ResourceBundleViewResolver-servlet.xml
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
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">
<context:component-scan base-package="com.yiibai" />
<bean class="org.springframework.web.servlet.view.ResourceBundleViewResolver">
<property name="basename" value="views" />
</bean>
</beans>
views.properties
hello.(class)=org.springframework.web.servlet.view.JstlView
hello.url=/WEB-INF/jsp/hello.jsp
hello.jsp
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2>${message}</h2>
</body>
</html>
Spring MVC多解析器映射
- 在spring mvc应用程序中使用多个视图解析器,那么可以使用order属性设置优先级顺序
MultipleResolver-servlet.xml
<bean class="org.springframework.web.servlet.view.ResourceBundleViewResolver">
<property name="basename" value="views" />
<property name="order" value="0" />
</bean>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
<property name="order" value="1" />
</bean>
- order属性定义了视图解析器的排序。0作为第一解析器,1作为下一解析器
views.properties
hello.(class)=org.springframework.web.servlet.view.JstlView
hello.url=/WEB-INF/jsp/hello.jsp
- 对于/hello请求,DispatcherServlet会将请求转发到由views.properties中定义的hello对应的 hello.jsp
- “hello”是要匹配的视图名称。class指定视图类型,url是视图的位置
Spring MVC多解析器映射样例
- 创建一个名称为 MultipleResolver 的动态WEB项目。
- 在 com.yiibai.springmvc 包下创建一个Java类HelloController
- 在jsp子文件夹下创建一个视图文件:hello.jsp
- 在src文件夹下创建属性文件views.properties
- 下载JSTL库jstl.jar。 把它放在 CLASSPATH中
HelloController.java
package com.yiibai.springmvc;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.ui.ModelMap;
@Controller
@RequestMapping("/hello")
public class HelloController{
@RequestMapping(method = RequestMethod.GET)
public String printHello(ModelMap model) {
model.addAttribute("message", "Hello,Spring MVC资源绑定视图解析器!");
return "hello";
}
}
MultipleResolver-servlet.xmcl
<beans xmlns="http://www.springframework.org/schema/beans"
xmlns:context="http://www.springframework.org/schema/context"
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">
<context:component-scan base-package="com.yiibai" />
<bean class="org.springframework.web.servlet.view.ResourceBundleViewResolver">
<property name="basename" value="views" />
<property name="order" value="0" />
</bean>
<bean class="org.springframework.web.servlet.view.InternalResourceViewResolver">
<property name="prefix" value="/WEB-INF/jsp/" />
<property name="suffix" value=".jsp" />
<property name="order" value="1" />
</bean>
</beans>
views.properties 配置
hello.(class)=org.springframework.web.servlet.view.JstlView
hello.url=/WEB-INF/jsp/hello.jsp
hello.jsp
<%@ page contentType="text/html; charset=UTF-8" %>
<html>
<head>
<title>Hello World</title>
</head>
<body>
<h2>${message}</h2>
</body>
</html>