You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: spring-boot-project/spring-boot-autoconfigure/src/main/java/org/springframework/boot/autoconfigure/thymeleaf/ThymeleafProperties.java
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -84,12 +84,12 @@ public class ThymeleafProperties {
84
84
privateIntegertemplateResolverOrder;
85
85
86
86
/**
87
-
* Comma-separated list of view names that can be resolved.
87
+
* Comma-separated list of view names (patterns allowed) that can be resolved.
88
88
*/
89
89
privateString[] viewNames;
90
90
91
91
/**
92
-
* Comma-separated list of view names that should be excluded from resolution.
92
+
* Comma-separated list of view names (patterns allowed) that should be excluded from resolution.
93
93
*/
94
94
privateString[] excludedViewNames;
95
95
@@ -218,7 +218,8 @@ public void setContentType(MimeType contentType) {
218
218
publicstaticclassReactive {
219
219
220
220
/**
221
-
* Maximum size of data buffers used for writing to the response, in bytes.
221
+
* Maximum size of data buffers used for writing to the response, in bytes. Templates will
222
+
* execute in CHUNKED mode by default if this is set a value.
0 commit comments