我正在将此配置添加到我的项目中:
#freemarker
spring.freemarker.prefer-file-system-access=true
spring.freemarker.template-loader-path=/Users/leo/dev/project/templates/
Spring加载告诉我路径不存在,但确实如此。
2016-12-30 11:47:09.791 WARN 3430 --- [ main] o.s.b.a.f.FreeMarkerAutoConfiguration : Cannot find template location(s): [/Users/leo/dev/project/templates/] (please add some templates, check your FreeMarker configuration, or set spring.freemarker.checkTemplateLocation=false)
如果我使用标准配置,它可以正常工作。
#freemarker
spring.freemarker.template-loader-path=classpath:/templates/
答案 0 :(得分:2)