Freemarker template not found
Posted
by brock
on Stack Overflow
See other posts from Stack Overflow
or by brock
Published on 2009-11-25T20:04:13Z
Indexed on
2010/05/08
9:48 UTC
Read the original article
Hit count: 408
Hi, I'm currently trying to get Freemarker to work with my application using Spring. No matter what I try I keep getting template not found. I am not sure if I have the configuration set up properly, but it never finds my template. Here is my spring bean config:
<bean id="freemarkerConfig" class="org.springframework.web.servlet.view.freemarker.FreeMarkerConfigurer">
<property name="templateLoaderPath" value="/WEB-INF/freemarker/"/>
</bean>
Whenever I try to call getTemplate on the freemaker configuration it always sends back a template not found error. So if I do
configuration.getTemplate("testTemplate.ftl")
it always throws an IOException.
I'm not sure if anyone has an idea of what I'm doing wrong.
Thanks for all your help!
© Stack Overflow or respective owner