xref: /aosp_15_r20/external/apache-velocity-engine/spring-velocity-support/README.md (revision 6626518d3d1a3a4cd21045b7974855fd6a3e2103)
1Title: Apache Velocity Spring Support
2
3# Apache Velocity Spring Support
4
5This module is an adaptation of the engine support initially hosted by the Spring project in its 4.x versions.
6
7Example configuration:
8
9```xml
10<bean id="velocityEngine"
11    class="org.apache.velocity.spring.VelocityEngineFactoryBean">
12    <property name="velocityProperties">
13        <props>
14            <prop key="resource.loader">class</prop>
15            <prop key="class.resource.loader.class">
16                org.apache.velocity.runtime.resource.loader.ClasspathResourceLoader
17            </prop>
18        </props>
19    </property>
20</bean>
21```
22
23