org.springframework.web.portlet.multipart |
Multipart resolution framework for handling file uploads.
Provides a PortletMultipartResolver strategy interface,
and a generic extension of the ActionRequest interface
for accessing multipart files in web application code.
|
Java Source File Name | Type | Comment |
CommonsPortletMultipartResolver.java | Class | PortletMultipartResolver implementation for
Jakarta Commons FileUpload
1.1 or higher.
Provides maxUploadSize, maxInMemorySize, and defaultEncoding settings as
bean properties (inherited from CommonsFileUploadSupport). |
DefaultMultipartActionRequest.java | Class | Default implementation of the MultipartActionRequest interface. |
MultipartActionRequest.java | Interface | Interface which provides additional methods for dealing with multipart
content within a portlet request, allowing to access uploaded files. |
PortletMultipartResolver.java | Interface | Portlet version of Spring's multipart resolution strategy for file uploads
as defined in RFC 1867.
Implementations are typically usable both within any application context
and standalone.
There is one concrete implementation included in Spring:
There is no default resolver implementation used for Spring
org.springframework.web.portlet.DispatcherPortlet DispatcherPortlets ,
as an application might choose to parse its multipart requests itself. |