File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
spring-boot-autoconfigure/src/main/resources/META-INF
spring-boot-docs/src/main/asciidoc Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 175
175
" http://localhost:9200"
176
176
]
177
177
},
178
+ {
179
+ "name" : " spring.freemarker.prefix" ,
180
+ "defaultValue" : " "
181
+ },
182
+ {
183
+ "name" : " spring.freemarker.suffix" ,
184
+ "defaultValue" : " .ftl"
185
+ },
186
+ {
187
+ "name" : " spring.groovy.template.prefix" ,
188
+ "defaultValue" : " "
189
+ },
190
+ {
191
+ "name" : " spring.groovy.template.suffix" ,
192
+ "defaultValue" : " .tpl"
193
+ },
178
194
{
179
195
"name" : " spring.http.encoding.enabled" ,
180
196
"type" : " java.lang.Boolean" ,
352
368
"description" : " Enable SitePreferenceHandler." ,
353
369
"defaultValue" : true
354
370
},
371
+ {
372
+ "name" : " spring.mustache.prefix" ,
373
+ "defaultValue" : " classpath:/templates/"
374
+ },
375
+ {
376
+ "name" : " spring.mustache.suffix" ,
377
+ "defaultValue" : " .html"
378
+ },
355
379
{
356
380
"name" : " spring.mvc.favicon.enabled" ,
357
381
"type" : " java.lang.Boolean" ,
1170
1194
"replacement" : " spring.thymeleaf.servlet.content-type" ,
1171
1195
"level" : " error"
1172
1196
}
1197
+ },
1198
+ {
1199
+ "name" : " spring.thymeleaf.prefix" ,
1200
+ "defaultValue" : " classpath:/templates/"
1201
+ },
1202
+ {
1203
+ "name" : " spring.thymeleaf.suffix" ,
1204
+ "defaultValue" : " .html"
1173
1205
}
1174
1206
],"hints" : [
1175
1207
{
Original file line number Diff line number Diff line change @@ -271,7 +271,7 @@ content into your application; rather pick only the properties that you need.
271
271
spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.
272
272
spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.
273
273
spring.freemarker.settings.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.
274
- spring.freemarker.suffix= # Suffix that gets appended to view names when building a URL.
274
+ spring.freemarker.suffix=.ftl # Suffix that gets appended to view names when building a URL.
275
275
spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.
276
276
spring.freemarker.view-names= # White list of view names that can be resolved.
277
277
You can’t perform that action at this time.
0 commit comments