aboutsummaryrefslogtreecommitdiff
path: root/spring-velocity-support/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'spring-velocity-support/README.md')
-rw-r--r--spring-velocity-support/README.md22
1 files changed, 22 insertions, 0 deletions
diff --git a/spring-velocity-support/README.md b/spring-velocity-support/README.md
new file mode 100644
index 00000000..c31ab24c
--- /dev/null
+++ b/spring-velocity-support/README.md
@@ -0,0 +1,22 @@
+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:
+
+```xml
+<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>
+```
+