I'm trying to upgrade Spring Boot from 2.7.X to 3.X, and I got a compilation error since commons-fileupload:1.5 was till using javax.servlet.http.HttpServletRequest
for request parsing, but Spring Boot 3.x is using jakarta.servlet.http.HttpServletRequest
in the new version of embeded tomcat, which cause the mismatch. The same issue reported: commons-fileupload and jakarta.servlet, and Apache is planning to release commons-fileupload 2.0.
Does anyone know when commons-fileupload 2.0 will be available?