本文主要是介绍FreeMarker页面中获得contextPath,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
使用的环境为Spring MVC+FreeMarker,要在ftl页面中使用contextPath,需要在viewResolver中做如下配置(红色部分):
<bean id="viewResolver" class="org.springframework.web.servlet.view.freemarker.FreeMarkerViewResolver">
<property name="cache" value="true" />
<property name="prefix" value="" />
<property name="suffix" value=".ftl" />
<property name="exposeSpringMacroHelpers" value="true"/>
<property name="requestContextAttribute" value="rc"></property>
</bean>
这样,在页面中使用${rc.contextPath} 就可获得contextPath
这篇关于FreeMarker页面中获得contextPath的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!