Servlet-based MultipartResolver implementation for
Jakarta Commons FileUpload
1.1 or higher.
Provides maxUploadSize, maxInMemorySize, and defaultEncoding settings as
bean properties (inherited from CommonsFileUploadSupport). See respective
ServletFileUpload / DiskFileItemFactory properties (sizeMax, sizeThreshold,
headerEncoding) for details in terms of defaults and accepted values.
Saves temporary files to the servlet container's temporary directory.
Needs to be initialized either by an application context or
via the constructor that takes a ServletContext (for standalone usage).
NOTE: As of Spring 2.0, this multipart resolver requires
Commons FileUpload 1.1 or higher. The implementation does not use
any deprecated FileUpload 1.0 API anymore, to be compatible with future
Commons FileUpload releases.
author: Trevor D. Cook author: Juergen Hoeller since: 29.09.2003 See Also: CommonsMultipartResolver.CommonsMultipartResolver(ServletContext) See Also: CommonsMultipartFile See Also: org.springframework.web.portlet.multipart.PortletMultipartResolver See Also: org.apache.commons.fileupload.servlet.ServletFileUpload See Also: org.apache.commons.fileupload.disk.DiskFileItemFactory |