From 5c38b89f4ea3256684c8b3af6abd88ececb02988 Mon Sep 17 00:00:00 2001 From: heqiang <18710386490@163.com> Date: Mon, 15 Mar 2021 10:57:28 +0800 Subject: [PATCH] Fix Commons FileUpload URL in reference guide See gh-26678 --- src/docs/asciidoc/web/webmvc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/docs/asciidoc/web/webmvc.adoc b/src/docs/asciidoc/web/webmvc.adoc index b8666a1f8b6..2dc6d86ae0d 100644 --- a/src/docs/asciidoc/web/webmvc.adoc +++ b/src/docs/asciidoc/web/webmvc.adoc @@ -1085,7 +1085,7 @@ request with a simple request parameter. `MultipartResolver` from the `org.springframework.web.multipart` package is a strategy for parsing multipart requests including file uploads. There is one implementation -based on https://jakarta.apache.org/commons/fileupload[Commons FileUpload] and another +based on https://commons.apache.org/proper/commons-fileupload[Commons FileUpload] and another based on Servlet 3.0 multipart request parsing. To enable multipart handling, you need to declare a `MultipartResolver` bean in your