spring + veloctiy 配置

转载自:http://www.blogjava.net/liuxiaosan/archive/2011/11/24/364737.html

 

在应用的 dispatcher-servlet.xml 中添加如下配置:

SpringMVC中Velocity的配置

在应用的 dispatcher-servlet.xml 中添加如下配置:

    <bean id="velocityConfigurer" class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">

        <property name="resourceLoaderPath"><!-- 页面文件的路径,相对于webapp -->

            <value>templates</value>

        </property>

        <!-- Velocity属性配置 -->

        <property name="velocityProperties">

            <props>

                <prop key="input.encoding">UTF-8</prop><!-- 指定模板引擎进行模板处理的编码 -->

                <prop key="output.encoding">UTF-8</prop><!-- 指定输出流的编码 -->

                <prop key="contentType">text/html;charset=UTF-8</prop><!-- contentType -->

                <prop key="velocimacro.library">macro/macros.vm</prop><!-- Velocimacro 模板库的列表 -->

                <prop                                key="eventhandler.referenceinsertion.class">com.sde.common.web.escape.reference.

      NoEscapeHtmlReference</prop>

                <prop key="eventhandler.noescape.html.match">/(?:screen_content)|(?:noescape_.*)/</prop>

            </props>

        </property>

    </bean>

 

    <bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityLayoutViewResolver">

          <property name="cache" value="false" /><!--是否缓存模板-->

          <property name="prefix" value="" />

          <property name="suffix" value=".vm" />

          <property name="toolboxConfigLocation" value="/WEB-INF/toolbox.xml" /><!--toolbox配置文件路径-->

          <property name="dateToolAttribute" value="date" /><!--日期函数名称-->

          <property name="numberToolAttribute" value="number" /><!--数字函数名称-->

          <property name="contentType" value="text/html;charset=UTF-8" />

          <property name="exposeSpringMacroHelpers" value="true" /><!--是否使用spring对宏定义的支持-->         

          <property name="exposeRequestAttributes" value="true" /><!--是否开放request属性-->

          <property name="requestContextAttribute" value="rc"/><!--request属性引用名称-->

             <property name="layoutUrl" value="templates/layout/default.vm"/<!--指定layout文件-->

 

   </bean>

你可能感兴趣的:(spring,velocity)