From e69a93bf4781be155d72f8f90f8600d3a8e71d32 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Ferna=CC=81ndez?= Date: Wed, 4 Oct 2017 01:49:35 +0200 Subject: [PATCH] Minor documentation improvements at ThymeleafProperties --- .../boot/autoconfigure/thymeleaf/ThymeleafProperties.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafProperties.java b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafProperties.java index 727dc098c28..b0942b69b41 100644 --- a/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafProperties.java +++ b/spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafProperties.java @@ -84,12 +84,12 @@ public class ThymeleafProperties { private Integer templateResolverOrder; /** - * Comma-separated list of view names that can be resolved. + * Comma-separated list of view names (patterns allowed) that can be resolved. */ private String[] viewNames; /** - * Comma-separated list of view names that should be excluded from resolution. + * Comma-separated list of view names (patterns allowed) that should be excluded from resolution. */ private String[] excludedViewNames; @@ -218,7 +218,8 @@ public class ThymeleafProperties { public static class Reactive { /** - * Maximum size of data buffers used for writing to the response, in bytes. + * Maximum size of data buffers used for writing to the response, in bytes. Templates will + * execute in CHUNKED mode by default if this is set a value. */ private int maxChunkSize;