From 4f51a83ab3d2cb3755ebce533099e3b643bc547f Mon Sep 17 00:00:00 2001 From: Andy Wilkinson Date: Mon, 8 Oct 2018 15:58:48 +0100 Subject: [PATCH] Add a note recommending the use of containers' multipart upload Closes gh-2958 --- .../spring-boot-docs/src/main/asciidoc/howto.adoc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc index 6c77ea1723..5ea5b2a50f 100644 --- a/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc +++ b/spring-boot-project/spring-boot-docs/src/main/asciidoc/howto.adoc @@ -1308,6 +1308,9 @@ See the {sc-spring-boot-autoconfigure}/web/servlet/MultipartAutoConfiguration.{sc-ext}[`MultipartAutoConfiguration`] source for more details. +NOTE: It is recommended to use the container's built-in support for multipart uploads +rather than introducing an additional dependency such as Apache Commons File Upload. + [[howto-switch-off-the-spring-mvc-dispatcherservlet]]