Spring MVC的多视图解析器配置及与Freemarker的集成

http://my249645546.iteye.com/blog/1426952

一、从freemarker谈起

Freemarker使用模板技术进行视图的渲染。自从看了Struts标签、Freemarker、JSTL的性能对比后,我毅然决定放弃Struts标签了!效率太差……

Spring本身支持了对Freemarker的集成。只需要配置一个针对Freemarker的视图解析器即可。

 

二、Spring MVC视图解析器

视图解析器的工作流程大致是这样的:Controller的某个方法执行完成以后,返回一个视图(比如:listUser),视图解析器要做的工作就是找到某个对象来完成视图的渲染,或者跳转到其他的逻辑视图。这里的渲染对象通常就是我们的jsp文件或者我们下面用的Freemarker(例如listUser.jsp或者listUser.ftl)。渲染完成以后,将解析结果发送到客户端浏览器

下面介绍一下本文需要用到的解析器(更多解析器资料,请参考 http://e-freya.iteye.com/blog/384083 ):

InternalResourceViewResolver:这是一个最常用的解析器。通常使用它指定渲染对象为jsp页面

FreeMarkerViewResolver:这就是Spring与Freemarker整合需要用到的解析器

 

三、配置多视图,支持freemarker

我们通常不希望所有的动态页面请求都使用Freemarker来渲染,那就需要配置多个视图解析器。网上有很多这方面的帖子。我看到很多人的做法是在web.xml中配置两个DispatcherServlet,一个拦截*.do,一个拦截*.ftl;然后再写两个dispatcherServlet.xml,配置两个视图解析器;jsp页面、ftl模板就各司其职。

其实没有那么复杂。

1.Web.xml

 

Xml代码   收藏代码
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <web-app version="2.4" xmlns="http://java.sun.com/xml/ns/j2ee"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"  
  4.     xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee   
  5.     http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd">  
  6.     <welcome-file-list>  
  7.         <welcome-file>index.jspwelcome-file>  
  8.     welcome-file-list>  
  9.   
  10.       
  11.       
  12.       
  13.       
  14.     <servlet>  
  15.         <servlet-name>dispatcherservlet-name>  
  16.         <servlet-class>org.springframework.web.servlet.DispatcherServletservlet-class>  
  17.         <init-param>  
  18.             <param-name>contextConfigLocationparam-name>  
  19.             <param-value>/WEB-INF/classes/applicationContext.xmlparam-value>  
  20.         init-param>  
  21.         <load-on-startup>1load-on-startup>  
  22.     servlet>  
  23.   
  24.       
  25.       
  26.       
  27.     <servlet-mapping>  
  28.         <servlet-name>dispatcherservlet-name>  
  29.         <url-pattern>*.dourl-pattern>  
  30.     servlet-mapping>  
  31. web-app>  

 

 

2.dispatcherServlet.xml

 

Xml代码   收藏代码
  1. xml version="1.0" encoding="UTF-8"?>  
  2. <beans xmlns="http://www.springframework.org/schema/beans"  
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:aop="http://www.springframework.org/schema/aop"  
  4.     xmlns:tx="http://www.springframework.org/schema/tx"  
  5.     xmlns:p="http://www.springframework.org/schema/p"  
  6.     xmlns:context="http://www.springframework.org/schema/context"  
  7.     xmlns:mvc="http://www.springframework.org/schema/mvc"  
  8.     xsi:schemaLocation="  
  9.   http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.5.xsd  
  10.   http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx-2.5.xsd  
  11.   http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.5.xsd  
  12.   http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.5.xsd  
  13.   http://www.springframework.org/schema/mvc  http://www.springframework.org/schema/mvc/spring-mvc-3.0.xsd">  
  14.   
  15.       
  16.       
  17.     <bean id="viewResolverCommon" class="org.springframework.web.servlet.view.InternalResourceViewResolver">  
  18.         <property name="prefix" value="/WEB-INF/page/"/>    
  19.         <property name="suffix" value=".jsp"/>  
  20.         <property name="viewClass">  
  21.             <value>org.springframework.web.servlet.view.InternalResourceViewvalue>  
  22.         property>  
  23.         <property name="order" value="1"/>  
  24.     bean>  
  25.       
  26.       
  27.     <bean id="viewResolverFtl" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">  
  28.         <property name="viewClass" value="org.springframework.web.servlet.view.freemarker.FreeMarkerView"/>  
  29.         <property name="contentType" value="text/html; charset=utf-8"/>  
  30.         <property name="cache" value="true" />  
  31.         <property name="suffix" value=".ftl" />  
  32.         <property name="order" value="0"/>  
  33.     bean>  
  34.       
  35.       
  36.     <bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">  
  37.         <property name="templateLoaderPath">  
  38.             <value>/WEB-INF/ftl/value>  
  39.         property>  
  40.         <property name="freemarkerVariables">  
  41.             <map>  
  42.                 <entry key="xml_escape" value-ref="fmXmlEscape" />  
  43.             map>  
  44.         property>  
  45.         <property name="defaultEncoding">  
  46.             <value>utf-8value>  
  47.         property>  
  48.         <property name="freemarkerSettings">  
  49.             <props>  
  50.                 <prop key="template_update_delay">3600prop>  
  51.             props>  
  52.         property>  
  53.     bean>  
  54.        
  55.     <bean id="fmXmlEscape" class="freemarker.template.utility.XmlEscape"/>  
  56.       
  57.         
  58.     <mvc:annotation-driven/>  
  59.       
  60.       
  61.     <context:component-scan base-package="com.hl.usersmanager">  
  62.         

你可能感兴趣的:(spring)