<bean id="viewResolver" class="org.springframework.web.servlet.view.velocity.VelocityViewResolver"> <property name="cache" value="false" /> <property name="contentType" value="text/html;charset=UTF-8" /> <property name="suffix" value=".vm" /> <property name="exposeRequestAttributes" value="true" /> <property name="requestContextAttribute" value="rc"/> <property name="exposeSpringMacroHelpers" value="true" /><!--是否使用spring對宏定義的支持--> <property name="order"> <value>0</value> </property> <property name="dateToolAttribute"> <value>dateTool</value> </property> <property name="numberToolAttribute"> <value>numberTool</value> </property> </bean>
在 視圖解析器的定義中,"exposeSpringMacroHelpers"設置是否經過Spring的宏庫暴露一個RequestContext(名爲 springBindRequestContext)供外部使用,默認值爲false。它暴露了處理表單和驗證錯誤信息的宏操做;
"requestContextAttribute" 把Spring的RequestContext對象暴露爲變量rc。利用${rc.contextPath}來獲取應用程序的contextPath(也 就是/MyUsers);利用${rc.getMessage("user.name")}讀取/WEB- INF/classes/messages.properties本地化信息。此對象對於那些不訪問serlvet請求的View技術(也就是 Velocity和FreeMarker模板)來講是必不可少的。
還有一些屬性:
exposeRequestAttributes:默認值false,設置是否全部的request屬性在與模板進行合併以前添加到model中。(能夠理解爲request範圍內包含的全部對象,而不是一個真正的Request對象。)
exposeSessionAttributes:默認值false,設置是否全部的session屬性在與模板進行合併以前添加到model中。(理解同上)html