diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 4164f32404..e9a9cd012a 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -225,13 +225,13 @@ content into your application; rather pick only the properties that you need. # MUSTACHE TEMPLATES ({sc-spring-boot-autoconfigure}/mustache/MustacheAutoConfiguration.{sc-ext}[MustacheAutoConfiguration]) spring.mustache.cache=true - spring.mustache.charset=UTF-8 - spring.mustache.check-template-location=true - spring.mustache.content-type=UTF-8 - spring.mustache.enabled=true # enable MVC view resolution - spring.mustache.prefix= - spring.mustache.suffix=.html - spring.mustache.view-names= # whitelist of view names that can be resolved + spring.mustache.charset=UTF-8 + spring.mustache.check-template-location=true + spring.mustache.content-type=UTF-8 + spring.mustache.enabled=true # enable MVC view resolution + spring.mustache.prefix= + spring.mustache.suffix=.html + spring.mustache.view-names= # whitelist of view names that can be resolved # JERSEY ({sc-spring-boot-autoconfigure}}/jersey/JerseyProperties.{sc-ext}[JerseyProperties]) spring.jersey.type=servlet # servlet or filter diff --git a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc index 609a556b27..7952e212a4 100644 --- a/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc +++ b/spring-boot-docs/src/main/asciidoc/spring-boot-features.adoc @@ -1117,6 +1117,7 @@ Spring Boot includes auto-configuration support for the following templating eng * http://docs.groovy-lang.org/docs/next/html/documentation/template-engines.html#_the_markuptemplateengine[Groovy] * http://www.thymeleaf.org[Thymeleaf] * http://velocity.apache.org[Velocity] + * http://mustache.github.io/[Mustache] TIP: JSPs should be avoided if possible, there are several <> when using them with embedded