I am trying to configure Velocity to read the template file from the filesystem as opposed to it reading it from the classpath. I can get it to read the template file from the classpath if i configure velocityEngine as:
<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean"
p:resourceLoaderPath="classpath:/com/myapp/test"
p:preferFileSystemAccess="false"/>
And put the templatefile.vm in the com.myapp.test package.
How can i change the above so that i can put the template file anywhere in the file system and access it. I tried this but it did not work.
<bean id="velocityEngine" class="org.springframework.ui.velocity.VelocityEngineFactoryBean"
p:resourceLoaderPath="c:\home\users\me\app\templates"
p:preferFileSystemAccess="true"/>
I tried to google to see if i can find the solution but most examples are for Spring MVC configuration. I am using a standalone Spring application.
Thanks