From d8f45ab6ca8ecc580e9c68b00670e6591ae34011 Mon Sep 17 00:00:00 2001 From: izeye Date: Mon, 6 Apr 2015 22:21:29 +0900 Subject: [PATCH] Document MultipartProperties Closes gh-2779 --- .../src/main/asciidoc/appendix-application-properties.adoc | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc index 84ff1c962b..2c3c94fd29 100644 --- a/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc +++ b/spring-boot-docs/src/main/asciidoc/appendix-application-properties.adoc @@ -102,6 +102,13 @@ content into your application; rather pick only the properties that you need. spring.resources.cache-period= # cache timeouts in headers sent to browser spring.resources.add-mappings=true # if default mappings should be added + # MULTIPART ({sc-spring-boot-autoconfigure}/web/MultipartProperties.{sc-ext}[MultipartProperties]) + multipart.enabled=true + multipart.file-size-threshold=0 # Threshold after which files will be written to disk. + multipart.location= # Intermediate location of uploaded files. + multipart.max-file-size=1Mb # Max file size. + multipart.max-request-size=10Mb # Max request size. + # SPRING HATEOAS ({sc-spring-boot-autoconfigure}/hateoas/HateoasProperties.{sc-ext}[HateoasProperties]) spring.hateoas.apply-to-primary-object-mapper=true # if the primary mapper should also be configured