Class StandardServletMultipartResolver
- java.lang.Object
- org.springframework.web.multipart.support.StandardServletMultipartResolver
- All Implemented Interfaces:
MultipartResolver
public class StandardServletMultipartResolver extends Object implements MultipartResolver
Standard implementation of theMultipartResolverinterface, based on the Servlet 3.0PartAPI. To be added as "multipartResolver" bean to a Spring DispatcherServlet context, without any extra configuration at the bean level (see below).Note: In order to use Servlet 3.0 based multipart parsing, you need to mark the affected servlet with a "multipart-config" section in
web.xml, or with aMultipartConfigElementin programmatic servlet registration, or (in case of a custom servlet class) possibly with aMultipartConfigannotation on your servlet class. Configuration settings such as maximum sizes or storage locations need to be applied at that servlet registration level; Servlet 3.0 does not allow for them to be set at the MultipartResolver level.- Since:
- 3.1
- Author:
- Juergen Hoeller
- See Also:
setResolveLazily(boolean),HttpServletRequest.getParts(),CommonsMultipartResolver
Constructor Summary
Constructors Constructor Description StandardServletMultipartResolver()
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidcleanupMultipart(MultipartHttpServletRequest request)Cleanup any resources used for the multipart handling, like a storage for the uploaded files.booleanisMultipart(HttpServletRequest request)Determine if the given request contains multipart content.MultipartHttpServletRequestresolveMultipart(HttpServletRequest request)Parse the given HTTP request into multipart files and parameters, and wrap the request inside aMultipartHttpServletRequestobject that provides access to file descriptors and makes contained parameters accessible via the standard ServletRequest methods.voidsetResolveLazily(boolean resolveLazily)Set whether to resolve the multipart request lazily at the time of file or parameter access.
Constructor Detail
StandardServletMultipartResolver
public StandardServletMultipartResolver()
Method Detail
setResolveLazily
public void setResolveLazily(boolean resolveLazily)
Set whether to resolve the multipart request lazily at the time of file or parameter access.Default is "false", resolving the multipart elements immediately, throwing corresponding exceptions at the time of the
resolveMultipart(javax.servlet.http.HttpServletRequest)call. Switch this to "true" for lazy multipart parsing, throwing parse exceptions once the application attempts to obtain multipart files or parameters.- Since:
- 3.2.9
isMultipart
public boolean isMultipart(HttpServletRequest request)
Description copied from interface:MultipartResolverDetermine 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.
- Specified by:
isMultipartin interfaceMultipartResolver- Parameters:
request- the servlet request to be evaluated- Returns:
- whether the request contains multipart content
resolveMultipart
public MultipartHttpServletRequest resolveMultipart(HttpServletRequest request) throws MultipartException
Description copied from interface:MultipartResolverParse the given HTTP request into multipart files and parameters, and wrap the request inside aMultipartHttpServletRequestobject that provides access to file descriptors and makes contained parameters accessible via the standard ServletRequest methods.- Specified by:
resolveMultipartin interfaceMultipartResolver- Parameters:
request- the servlet request to wrap (must be of a multipart content type)- Returns:
- the wrapped servlet request
- Throws:
MultipartException- if the servlet 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(),ServletRequest.getParameter(java.lang.String),ServletRequest.getParameterNames(),ServletRequest.getParameterMap()
cleanupMultipart
public void cleanupMultipart(MultipartHttpServletRequest request)
Description copied from interface:MultipartResolverCleanup any resources used for the multipart handling, like a storage for the uploaded files.- Specified by:
cleanupMultipartin interfaceMultipartResolver- Parameters:
request- the request to cleanup resources for