|
|
@ -89,7 +89,8 @@ public class ThymeleafProperties {
|
|
|
|
private String[] viewNames;
|
|
|
|
private String[] viewNames;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be excluded from resolution.
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be excluded from
|
|
|
|
|
|
|
|
* resolution.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String[] excludedViewNames;
|
|
|
|
private String[] excludedViewNames;
|
|
|
|
|
|
|
|
|
|
|
@ -218,8 +219,8 @@ public class ThymeleafProperties {
|
|
|
|
public static class Reactive {
|
|
|
|
public static class Reactive {
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Maximum size of data buffers used for writing to the response, in bytes. Templates will
|
|
|
|
* Maximum size of data buffers used for writing to the response, in bytes.
|
|
|
|
* execute in CHUNKED mode by default if this is set a value.
|
|
|
|
* Templates will execute in CHUNKED mode by default if this is set a value.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private int maxChunkSize;
|
|
|
|
private int maxChunkSize;
|
|
|
|
|
|
|
|
|
|
|
@ -229,18 +230,17 @@ public class ThymeleafProperties {
|
|
|
|
private List<MediaType> mediaTypes;
|
|
|
|
private List<MediaType> mediaTypes;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be executed in FULL mode
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be executed
|
|
|
|
* even if a max chunk size is set.
|
|
|
|
* in FULL mode even if a max chunk size is set.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String[] fullModeViewNames;
|
|
|
|
private String[] fullModeViewNames;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be the only ones executed
|
|
|
|
* Comma-separated list of view names (patterns allowed) that should be the only
|
|
|
|
* in CHUNKED mode when a max chunk size is set.
|
|
|
|
* ones executed in CHUNKED mode when a max chunk size is set.
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
private String[] chunkedModeViewNames;
|
|
|
|
private String[] chunkedModeViewNames;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public List<MediaType> getMediaTypes() {
|
|
|
|
public List<MediaType> getMediaTypes() {
|
|
|
|
return this.mediaTypes;
|
|
|
|
return this.mediaTypes;
|
|
|
|
}
|
|
|
|
}
|
|
|
|