You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
1 year ago | |
|---|---|---|
| .. | ||
| src | 1 year ago | |
| README.md | 1 year ago | |
| pom.xml | 1 year ago | |
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>