tree: aaffdbd1361ab88354265261989d9b4dcfaf3515 [path history] [tgz]
  1. src/
  2. pom.xml
  3. README.md
spring-velocity-support/README.md

Title: Apache Velocity Spring Support

Apache Velocity Spring Support

This module is an adaptation of the engine support initially hosted by the Spring project in its 4.x versions.

Example configuration:

<bean id="velocityEngine"
    class="org.apache.velocity.spring.VelocityEngineFactoryBean">
    <property name="velocityProperties">
        <props>
            <prop key="resource.loader">class</prop>
            <prop key="class.resource.loader.class">
                org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
            </prop>
        </props>
    </property>
</bean>