现在我尝试从依赖jar加载FreeMarker,我的配置文件是:
<bean id="freemarkerConfiguration" class="org.springframework.ui.freemarker.FreeMarkerConfigurationFactoryBean">
<property name="templateLoaderPath" value="classpath*:/mailer_templates" />
</bean>
但我收到了这个错误:
java.io.FileNotFoundException: Template "test.ftl" not found.
at freemarker.template.Configuration.getTemplate(Configuration.java:742)
at freemarker.template.Configuration.getTemplate(Configuration.java:681)
我无法将模板文件从依赖jar转移到当前项目目录。是否有任何解决方案?
提前致谢