Skip to content

Instantly share code, notes, and snippets.

@rei999
Created January 20, 2013 09:22
Show Gist options
  • Save rei999/4577444 to your computer and use it in GitHub Desktop.
Save rei999/4577444 to your computer and use it in GitHub Desktop.
velocity in servlet config
<bean id="velocityConfig"
class="org.springframework.web.servlet.view.velocity.VelocityConfigurer">
<property name="resourceLoaderPath" value="/velocity" />
</bean>
<bean id="viewResolver"
class="org.springframework.web.servlet.view.velocity.VelocityViewResolver">
<property name="cache" value="false" />
<property name="prefix" value="" />
<property name="suffix" value=".vm" />
<property name="exposeSpringMacroHelpers" value="true"/>
</bean>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment