Interface PortletMultipartResolver
- All Known Implementing Classes:
CommonsPortletMultipartResolver
public interface PortletMultipartResolver
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:
CommonsMultipartResolverfor Apache Commons FileUpload
There is no default resolver implementation used for Spring
DispatcherPortlets, as an application might choose to parse its multipart requests itself. To define an implementation, create a bean with the id "portletMultipartResolver" in aDispatcherPortlet'sapplication context. Such a resolver gets applied to all requests handled by thatDispatcherPortlet.If a
DispatcherPortletdetects a multipart request, it will resolve it via the configuredPortletMultipartResolverand pass on a wrapped PortletActionRequest. Controllers can then cast their given request to theMultipartActionRequestinterface, being able to accessMultipartFiles. Note that this cast is only supported in case of an actual multipart request.public void handleActionRequest(ActionRequest request, ActionResponse response) { MultipartActionRequest multipartRequest = (MultipartActionRequest) request; MultipartFile multipartFile = multipartRequest.getFile("image"); ... }Instead of direct access, command or form controllers can register aByteArrayMultipartFileEditororStringMultipartFileEditorwith their data binder, to automatically apply multipart content to form bean properties.Note: There is hardly ever a need to access the
MultipartResolveritself from application code. It will simply do its work behind the scenes, makingMultipartActionRequestsavailable to controllers.- Since:
- 2.0
- Author:
- Juergen Hoeller
- See Also:
MultipartActionRequest,MultipartFile,CommonsPortletMultipartResolver,ByteArrayMultipartFileEditor,StringMultipartFileEditor,DispatcherPortlet
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidcleanupMultipart(MultipartActionRequest request)Cleanup any resources used for the multipart handling, such as storage for any uploaded file(s).booleanisMultipart(ActionRequest request)Determine if the given request contains multipart content.MultipartActionRequestresolveMultipart(ActionRequest request)Parse the given portlet request into multipart files and parameters, and wrap the request inside a MultipartActionRequest object that provides access to file descriptors and makes contained parameters accessible via the standard PortletRequest methods.
Method Detail
isMultipart
boolean isMultipart(ActionRequest request)
Determine if the given request contains multipart content.Will typically check for content type "
multipart/form-data", but the actually accepted requests might depend on the capabilities of the resolver implementation.- Parameters:
request- the portlet request to be evaluated- Returns:
- whether the request contains multipart content
resolveMultipart
MultipartActionRequest resolveMultipart(ActionRequest request) throws MultipartException
Parse the given portlet request into multipart files and parameters, and wrap the request inside a MultipartActionRequest object that provides access to file descriptors and makes contained parameters accessible via the standard PortletRequest methods.- Parameters:
request- the portlet request to wrap (must be of a multipart content type)- Returns:
- the wrapped portlet request
- Throws:
MultipartException- if the portlet request is not multipart, or if implementation-specific problems are encountered (such as exceeding file size limits)- See Also:
MultipartRequest.getFile(java.lang.String),MultipartRequest.getFileNames(),MultipartRequest.getFileMap(),PortletRequest.getParameter(java.lang.String),PortletRequest.getParameterNames(),PortletRequest.getParameterMap()
cleanupMultipart
void cleanupMultipart(MultipartActionRequest request)
Cleanup any resources used for the multipart handling, such as storage for any uploaded file(s).- Parameters:
request- the request to cleanup resources for