Affects: 6.0.0
Comment From: DaveDixon
I'm updating older code to use jakarta so I have to use spring 6.0.0. The code uses the package org.springframework.web.multipart.commons which doesn't exists in 6.0.0. I can't find any information about it being deprecated or moved elsewhere.
Comment From: jhoeller
org.springframework.web.multipart.commons.CommonsMultipartyResolver
has been superseded by org.springframework.web.multipart.support.StandardServletMultipartResolver
since all Servlet 5.0+ containers have built-in multipart support now. I'll make sure to document this accordingly.
Comment From: DaveDixon
Thanks!!
Comment From: shivamupasanigg
org.springframework.web.multipart.commons not found in 6.0.11 what is solution for file upload project in spring mvc ???
Comment From: bclozel
See https://docs.spring.io/spring-framework/reference/web/webmvc/mvc-servlet/multipart.html
Please ask questions on StackOverflow.
Comment From: Bsheepcoder
https://docs.spring.io/spring-framework/docs/6.0.0-M3/reference/html/web.html#mvc-multipart
Here is no update.
Comment From: shivamupasanigg
In 6.0.10 version of spring mvc not used the org.springframework.web.multipart.commons for CommonMultipartResolver . In 6.0.10 used the StandardServletMultipartResolver for upload the images and pdfs as a documents and Audio. So I have provide a one my personal Github Account Link for solution of this.
Github Link :: https://github.com/shivamupasanigg/ImageWithAllDataSpringMVC
in this link provide the upload the images with all student data.
Comment From: Shemuel2060
Great. While learning Spring MVC, i have been challenged by the lack of the CommonsMultipartResolver since I am using Jarkata and Spring 6.1.14. But now I see that I have to stick to the StandardServletMultipartResolver. Thanks guys