当前位置: 代码迷 >> 综合 >> springboot启eureka时:Cannot find template location(s): [classpath:/templates/]
  详细解决方案

springboot启eureka时:Cannot find template location(s): [classpath:/templates/]

热度:128   发布时间:2023-09-20 00:22:09.0

SpringBoot 项目启动后,可能在控制台看到这样一个警告:

WARN 8904 --- [  restartedMain] o.s.b.a.f.FreeMarkerAutoConfiguration
Cannot find template location(s): [classpath:/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false)


其实你可以忽略不必管它。

但你如果不想看到它,想知道什么原因的话。

其实这个提示还是比较明确的。

解决方法:

1、在项目的 /src/main/resources/templates 目录下添加一个模板文件,比如 .jsp 或 .ftl 文件。(此方法有用,我加的empty.ftl)

2、打开项目配置文件 application.properties,有的人可能喜欢使用 .yml 格式的。

添加配置:

spring.freemarker.checkTemplateLocation=false(这个没起作用,springboot是2.1.9版本,springcloud是Greenwich.SR3)

  相关解决方案