diff --git a/spring-bootstrap/src/main/java/org/springframework/bootstrap/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java b/spring-bootstrap/src/main/java/org/springframework/bootstrap/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java index 8a7f88ef90..8aed8834a8 100644 --- a/spring-bootstrap/src/main/java/org/springframework/bootstrap/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java +++ b/spring-bootstrap/src/main/java/org/springframework/bootstrap/autoconfigure/thymeleaf/ThymeleafAutoConfiguration.java @@ -67,6 +67,9 @@ public class ThymeleafAutoConfiguration { @Value("${spring.template.suffix:.html}") private String suffix = ".html"; + @Value("${spring.template.cache:true}") + private boolean cacheable; + @Value("${spring.template.mode:HTML5}") private String templateMode = "HTML5"; @@ -94,6 +97,7 @@ public class ThymeleafAutoConfiguration { resolver.setPrefix(this.prefix); resolver.setSuffix(this.suffix); resolver.setTemplateMode(this.templateMode); + resolver.setCacheable(this.cacheable); return resolver; }