gpt4 book ai didi

java - Spring 启动: template not found with Freemarker

转载 作者:行者123 更新时间:2023-12-02 08:48:32 30 4
gpt4 key购买 nike

我有一个 Spring Boot 应用程序(版本 2.2.5.RELEASE),它打包为 jar 文件:

我正在使用 Freemarker(版本 2.3.29)生成 html 模板,请在下面找到我的配置:

@Configuration
public class EmailFreemarkerConfig {
@Primary
@Bean
public FreeMarkerConfigurationFactoryBean getFreeMarkerConfig() {
FreeMarkerConfigurationFactoryBean bean = new FreeMarkerConfigurationFactoryBean();
bean.setTemplateLoaderPath("/templates/");

return bean;
}

请找到我的 pom.xml 文件,其中包含 ftl 文件扩展名:

<resources>
<resource>
<directory>src/main/resources</directory>
<filtering>false</filtering>
<includes>
<include>**/*.properties</include>
<include>**/*.xml</include>
<include>**/*.csv</include>
<include>**/*.vm</include>
<include>**/*.jpg</include>
<include>**/*.ftl</include>
</includes>
</resource>
</resources>

当我打包 jar 时,我可以在以下路径找到该文件:BOOT-INF/classes/templates/file12.ftl

请在下面找到我生成 html 文件的代码:

   @Autowired
private Configuration freemarkerConfig;

.....
try {
t = freemarkerConfig.getTemplate("file12.ftl");
html = FreeMarkerTemplateUtils.processTemplateIntoString(t, model);
} catch (IOException | TemplateException e) {
// TODO Auto-generated catch block
e.printStackTrace();

}

....当我从以下命令执行 jar 时:

java -jar test-batch-0.0.2-SNAPSHOT.jar

显示以下异常:

freemarker.template.TemplateNotFoundException: Template not found for name "file12.ftl"

当我在 Eclipse 上的集成测试中执行相同的代码库时,它工作正常。

知道我在这里缺少什么吗?

最佳答案

以防万一其他人遇到这个问题,我在配置中错过了类路径:

bean.setTemplateLoaderPath("classpath:/templates/");

关于java - Spring 启动: template not found with Freemarker,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60925433/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com