Package | Description |
---|---|
org.springframework.http |
Contains a basic abstraction over client/server-side HTTP.
|
org.springframework.http.converter |
Provides an HttpMessageConverter abstraction to convert between Java objects and HTTP input/output messages.
|
org.springframework.util |
Miscellaneous utility classes, such as String manipulation utilities,
a Log4J configurer, and a state holder for paged lists of objects.
|
org.springframework.web.multipart |
Multipart resolution framework for handling file uploads.
|
org.springframework.web.multipart.commons |
MultipartResolver implementation for
Jakarta Commons FileUpload.
|
org.springframework.web.multipart.support |
Support classes for the multipart resolution 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.
|
org.springframework.web.util |
Miscellaneous web utility classes, such as HTML escaping,
log4j initialization, and cookie handling.
|
Modifier and Type | Class and Description |
---|---|
class |
HttpHeaders
Represents HTTP request and response headers, mapping string header names to list of string values.
|
Constructor and Description |
---|
HttpEntity(MultiValueMap<String,String> headers)
Create a new
HttpEntity with the given headers and no body. |
HttpEntity(T body,
MultiValueMap<String,String> headers)
Create a new
HttpEntity with the given body and headers. |
ResponseEntity(MultiValueMap<String,String> headers,
HttpStatus statusCode)
Create a new
HttpEntity with the given headers and status code, and no body. |
ResponseEntity(T body,
MultiValueMap<String,String> headers,
HttpStatus statusCode)
Create a new
HttpEntity with the given body, headers, and status code. |
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,String> |
FormHttpMessageConverter.read(Class<? extends MultiValueMap<String,?>> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Method and Description |
---|---|
void |
FormHttpMessageConverter.write(MultiValueMap<String,?> map,
MediaType contentType,
HttpOutputMessage outputMessage) |
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,String> |
FormHttpMessageConverter.read(Class<? extends MultiValueMap<String,?>> clazz,
HttpInputMessage inputMessage) |
Modifier and Type | Class and Description |
---|---|
class |
LinkedMultiValueMap<K,V>
Simple implementation of
MultiValueMap that wraps a LinkedHashMap ,
storing multiple values in a LinkedList . |
Modifier and Type | Method and Description |
---|---|
static <K,V> MultiValueMap<K,V> |
CollectionUtils.toMultiValueMap(Map<K,List<V>> map)
Adapts a
Map<K, List<V>> to an MultiValueMap<K,V> . |
static <K,V> MultiValueMap<K,V> |
CollectionUtils.unmodifiableMultiValueMap(MultiValueMap<? extends K,? extends V> map)
Returns an unmodifiable view of the specified multi-value map.
|
Modifier and Type | Method and Description |
---|---|
static <K,V> MultiValueMap<K,V> |
CollectionUtils.unmodifiableMultiValueMap(MultiValueMap<? extends K,? extends V> map)
Returns an unmodifiable view of the specified multi-value map.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,MultipartFile> |
MultipartRequest.getMultiFileMap()
Return a
MultiValueMap of the multipart files contained in this request. |
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,MultipartFile> |
CommonsFileUploadSupport.MultipartParsingResult.getMultipartFiles() |
Modifier and Type | Method and Description |
---|---|
protected void |
CommonsFileUploadSupport.cleanupFileItems(MultiValueMap<String,MultipartFile> multipartFiles)
Cleanup the Spring MultipartFiles created during multipart parsing,
potentially holding temporary data on disk.
|
Constructor and Description |
---|
CommonsFileUploadSupport.MultipartParsingResult(MultiValueMap<String,MultipartFile> mpFiles,
Map<String,String[]> mpParams,
Map<String,String> mpParamContentTypes) |
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,MultipartFile> |
AbstractMultipartHttpServletRequest.getMultiFileMap() |
protected MultiValueMap<String,MultipartFile> |
AbstractMultipartHttpServletRequest.getMultipartFiles()
Obtain the MultipartFile Map for retrieval,
lazily initializing it if necessary.
|
Modifier and Type | Method and Description |
---|---|
protected void |
AbstractMultipartHttpServletRequest.setMultipartFiles(MultiValueMap<String,MultipartFile> multipartFiles)
Set a Map with parameter names as keys and list of MultipartFile objects as values.
|
Constructor and Description |
---|
DefaultMultipartHttpServletRequest(javax.servlet.http.HttpServletRequest request,
MultiValueMap<String,MultipartFile> mpFiles,
Map<String,String[]> mpParams,
Map<String,String> mpParamContentTypes)
Wrap the given HttpServletRequest in a MultipartHttpServletRequest.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,MultipartFile> |
DefaultMultipartActionRequest.getMultiFileMap() |
protected MultiValueMap<String,MultipartFile> |
DefaultMultipartActionRequest.getMultipartFiles()
Obtain the MultipartFile Map for retrieval,
lazily initializing it if necessary.
|
Modifier and Type | Method and Description |
---|---|
protected void |
DefaultMultipartActionRequest.setMultipartFiles(MultiValueMap<String,MultipartFile> multipartFiles)
Set a Map with parameter names as keys and list of MultipartFile objects as values.
|
Constructor and Description |
---|
DefaultMultipartActionRequest(javax.portlet.ActionRequest request,
MultiValueMap<String,MultipartFile> mpFiles,
Map<String,String[]> mpParams,
Map<String,String> mpParamContentTypes)
Wrap the given Portlet ActionRequest in a MultipartActionRequest.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,String> |
FlashMap.getTargetRequestParams()
Return the parameters identifying the target request, or an empty map.
|
Modifier and Type | Method and Description |
---|---|
FlashMap |
FlashMap.addTargetRequestParams(MultiValueMap<String,String> params)
Provide request parameters identifying the request for this FlashMap.
|
Modifier and Type | Method and Description |
---|---|
MultiValueMap<String,String> |
UriComponents.getQueryParams()
Returns the map of query parameters.
|
Copyright © 2014. All Rights Reserved.