This commit is contained in:
Phillip Webb 2022-08-24 18:12:57 -07:00
parent ccc80f39c7
commit adc4e05eff
2 changed files with 4 additions and 3 deletions

View File

@ -64,7 +64,7 @@ public class FreeMarkerAutoConfiguration {
if (locations.stream().noneMatch(this::locationExists)) {
logger.warn("Cannot find template location(s): " + locations + " (please add some templates, "
+ "check your FreeMarker configuration, or set "
+ "spring.freemarker.checkTemplateLocation=false)");
+ "spring.freemarker.check-template-location=false)");
}
}
}

View File

@ -101,8 +101,9 @@ public class ThymeleafAutoConfiguration {
if (checkTemplateLocation) {
TemplateLocation location = new TemplateLocation(this.properties.getPrefix());
if (!location.exists(this.applicationContext)) {
logger.warn("Cannot find template location: " + location + " (please add some templates or check "
+ "your Thymeleaf configuration)");
logger.warn("Cannot find template location: " + location
+ " (please add some templates, check your Thymeleaf configuration, or set spring.thymeleaf."
+ "check-template-location=false)");
}
}
}