Package | Description |
---|---|
org.springframework.mock.web |
A comprehensive set of Servlet API 4.0 mock objects, targeted at usage with
Spring's Web MVC framework.
|
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.
|
Modifier and Type | Class and Description |
---|---|
class |
MockMultipartHttpServletRequest
Mock implementation of the
MultipartHttpServletRequest interface. |
Modifier and Type | Method and Description |
---|---|
MultipartHttpServletRequest |
MultipartResolver.resolveMultipart(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 |
---|---|
void |
MultipartResolver.cleanupMultipart(MultipartHttpServletRequest request)
Cleanup any resources used for the multipart handling,
like a storage for the uploaded files.
|
Modifier and Type | Method and Description |
---|---|
MultipartHttpServletRequest |
CommonsMultipartResolver.resolveMultipart(HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
CommonsMultipartResolver.cleanupMultipart(MultipartHttpServletRequest request) |
Modifier and Type | Class and Description |
---|---|
class |
AbstractMultipartHttpServletRequest
Abstract base implementation of the MultipartHttpServletRequest interface.
|
class |
DefaultMultipartHttpServletRequest
Default implementation of the
MultipartHttpServletRequest
interface. |
class |
StandardMultipartHttpServletRequest
Spring MultipartHttpServletRequest adapter, wrapping a Servlet 3.0 HttpServletRequest
and its Part objects.
|
Modifier and Type | Method and Description |
---|---|
MultipartHttpServletRequest |
StandardServletMultipartResolver.resolveMultipart(HttpServletRequest request) |
Modifier and Type | Method and Description |
---|---|
void |
StandardServletMultipartResolver.cleanupMultipart(MultipartHttpServletRequest request) |