本文主要是介绍Cannot find template location(s): [classpath:/templates/],希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
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 文件。
2、打开项目配置文件 application.properties,有的人可能喜欢使用 .yml 格式的。
添加配置:
application.properties
spring.freemarker.checkTemplateLocation=false
yml
spring: freemarker:checkTemplateLocation: false
这篇关于Cannot find template location(s): [classpath:/templates/]的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!