• Home
Name Date Size #Lines LOC

..--

src/03-May-2024-840361

README.mdD03-May-2024621 2317

pom.xmlD03-May-20244.2 KiB10786

README.md

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