Package | Description |
---|---|
org.springframework.web.multipart |
Multipart resolution framework for handling file uploads.
|
org.springframework.web.multipart.commons |
MultipartResolver implementation for
Apache Commons FileUpload.
|
org.springframework.web.multipart.support |
Support classes for the multipart resolution framework.
|
org.springframework.web.portlet |
Provides JSR-168 portlets that integrate with the application context
infrastructure, and the core interfaces and classes for the Portlet
variant of Spring's web MVC framework.
|
org.springframework.web.portlet.multipart |
Multipart resolution framework for handling file uploads.
|
org.springframework.web.servlet |
Provides servlets that integrate with the application context
infrastructure, and the core interfaces and classes for the
Spring web MVC framework.
|
Modifier and Type | Class and Description |
---|---|
class |
MaxUploadSizeExceededException
MultipartException subclass thrown when an upload exceeds the
maximum upload size allowed.
|
Modifier and Type | Method and Description |
---|---|
MultipartHttpServletRequest |
MultipartResolver.resolveMultipart(javax.servlet.http.HttpServletRequest request)
Parse the given HTTP request into multipart files and parameters,
and wrap the request inside a
MultipartHttpServletRequest
object that provides access to file descriptors and makes contained
parameters accessible via the standard ServletRequest methods. |
Modifier and Type | Method and Description |
---|---|
protected CommonsFileUploadSupport.MultipartParsingResult |
CommonsMultipartResolver.parseRequest(javax.servlet.http.HttpServletRequest request)
Parse the given servlet request, resolving its multipart elements.
|
MultipartHttpServletRequest |
CommonsMultipartResolver.resolveMultipart(javax.servlet.http.HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
MultipartHttpServletRequest |
StandardServletMultipartResolver.resolveMultipart(javax.servlet.http.HttpServletRequest request) |
Constructor and Description |
---|
StandardMultipartHttpServletRequest(javax.servlet.http.HttpServletRequest request)
Create a new StandardMultipartHttpServletRequest wrapper for the given request,
immediately parsing the multipart content.
|
StandardMultipartHttpServletRequest(javax.servlet.http.HttpServletRequest request,
boolean lazyParsing)
Create a new StandardMultipartHttpServletRequest wrapper for the given request.
|
Modifier and Type | Method and Description |
---|---|
protected javax.portlet.ActionRequest |
DispatcherPortlet.checkMultipart(javax.portlet.ActionRequest request)
Convert the request into a multipart request, and make multipart resolver available.
|
Modifier and Type | Method and Description |
---|---|
protected CommonsFileUploadSupport.MultipartParsingResult |
CommonsPortletMultipartResolver.parseRequest(javax.portlet.ActionRequest request)
Parse the given portlet request, resolving its multipart elements.
|
MultipartActionRequest |
CommonsPortletMultipartResolver.resolveMultipart(javax.portlet.ActionRequest request) |
MultipartActionRequest |
PortletMultipartResolver.resolveMultipart(javax.portlet.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.
|
Modifier and Type | Method and Description |
---|---|
protected javax.servlet.http.HttpServletRequest |
DispatcherServlet.checkMultipart(javax.servlet.http.HttpServletRequest request)
Convert the request into a multipart request, and make multipart resolver available.
|
Copyright © 2015. All rights reserved.