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