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 230
230
" http://localhost:9200"
231
231
]
232
232
},
233
+ {
234
+ "name" : " spring.freemarker.prefix" ,
235
+ "defaultValue" : " "
236
+ },
237
+ {
238
+ "name" : " spring.freemarker.suffix" ,
239
+ "defaultValue" : " .ftl"
240
+ },
241
+ {
242
+ "name" : " spring.groovy.template.prefix" ,
243
+ "defaultValue" : " "
244
+ },
245
+ {
246
+ "name" : " spring.groovy.template.suffix" ,
247
+ "defaultValue" : " .tpl"
248
+ },
233
249
{
234
250
"name" : " spring.http.encoding.enabled" ,
235
251
"type" : " java.lang.Boolean" ,
399
415
"description" : " Enable SitePreferenceHandler." ,
400
416
"defaultValue" : true
401
417
},
418
+ {
419
+ "name" : " spring.mustache.prefix" ,
420
+ "defaultValue" : " classpath:/templates/"
421
+ },
422
+ {
423
+ "name" : " spring.mustache.suffix" ,
424
+ "defaultValue" : " .html"
425
+ },
402
426
{
403
427
"name" : " spring.mvc.favicon.enabled" ,
404
428
"type" : " java.lang.Boolean" ,
504
528
"type" : " java.lang.Boolean" ,
505
529
"description" : " Enable the connection status view for supported providers." ,
506
530
"defaultValue" : false
531
+ },
532
+ {
533
+ "name" : " spring.thymeleaf.prefix" ,
534
+ "defaultValue" : " classpath:/templates/"
535
+ },
536
+ {
537
+ "name" : " spring.thymeleaf.suffix" ,
538
+ "defaultValue" : " .html"
507
539
}
508
540
],"hints" : [
509
541
{
Original file line number Diff line number Diff line change @@ -250,7 +250,7 @@ content into your application; rather pick only the properties that you need.
250
250
spring.freemarker.prefix= # Prefix that gets prepended to view names when building a URL.
251
251
spring.freemarker.request-context-attribute= # Name of the RequestContext attribute for all views.
252
252
spring.freemarker.settings.*= # Well-known FreeMarker keys which will be passed to FreeMarker's Configuration.
253
- spring.freemarker.suffix= # Suffix that gets appended to view names when building a URL.
253
+ spring.freemarker.suffix=.ftl # Suffix that gets appended to view names when building a URL.
254
254
spring.freemarker.template-loader-path=classpath:/templates/ # Comma-separated list of template paths.
255
255
spring.freemarker.view-names= # White list of view names that can be resolved.
256
256
You can’t perform that action at this time.
0 commit comments