Class DefaultPartHttpMessageReader
java.lang.Object
org.springframework.http.codec.LoggingCodecSupport
org.springframework.http.codec.multipart.DefaultPartHttpMessageReader
- All Implemented Interfaces:
HttpMessageReader<Part>
public class DefaultPartHttpMessageReader
extends LoggingCodecSupport
implements HttpMessageReader<Part>
Default
HttpMessageReader
for parsing "multipart/form-data"
requests to a stream of Part
s.
In default, non-streaming mode, this message reader stores the
contents of parts smaller than
maxInMemorySize
in memory, and parts larger
than that to a temporary file in
fileStorageDirectory
.
This reader can be provided to MultipartHttpMessageReader
in order
to aggregate all parts into a Map.
- Since:
- 5.3
- Author:
- Arjen Poutsma
-
Field Summary
Fields inherited from class org.springframework.http.codec.LoggingCodecSupport
logger
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionboolean
canRead
(ResolvableType elementType, MediaType mediaType) Whether the given object type is supported by this reader.int
Get theconfigured
maximum in-memory size.Return the list of media types supported by this reader.reactor.core.publisher.Flux<Part>
read
(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Read from the input message and decode to a stream of objects.reactor.core.publisher.Mono<Part>
readMono
(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Read from the input message and decode to a single object.void
setBlockingOperationScheduler
(reactor.core.scheduler.Scheduler blockingOperationScheduler) Set the ReactorScheduler
to be used for creating files and directories, and writing to files.void
setFileStorageDirectory
(Path fileStorageDirectory) Set the directory used to store parts larger thanmaxInMemorySize
.void
setHeadersCharset
(Charset headersCharset) Set the character set used to decode headers.void
setMaxDiskUsagePerPart
(long maxDiskUsagePerPart) Configure the maximum amount of disk space allowed for file parts.void
setMaxHeadersSize
(int byteCount) Configure the maximum amount of memory that is allowed per headers section of each part.void
setMaxInMemorySize
(int maxInMemorySize) Configure the maximum amount of memory allowed per part.void
setMaxParts
(int maxParts) Specify the maximum number of parts allowed in a given multipart request.Methods inherited from class org.springframework.http.codec.LoggingCodecSupport
isEnableLoggingRequestDetails, setEnableLoggingRequestDetails
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.springframework.http.codec.HttpMessageReader
getReadableMediaTypes, read, readMono
-
Constructor Details
-
DefaultPartHttpMessageReader
public DefaultPartHttpMessageReader()
-
-
Method Details
-
setMaxHeadersSize
public void setMaxHeadersSize(int byteCount) Configure the maximum amount of memory that is allowed per headers section of each part. When the limit- Parameters:
byteCount
- the maximum amount of memory for headers
-
getMaxInMemorySize
public int getMaxInMemorySize()Get theconfigured
maximum in-memory size. -
setMaxInMemorySize
public void setMaxInMemorySize(int maxInMemorySize) Configure the maximum amount of memory allowed per part. When the limit is exceeded:- file parts are written to a temporary file.
- non-file parts are rejected with
DataBufferLimitException
.
By default this is set to 256K.
- Parameters:
maxInMemorySize
- the in-memory limit in bytes; if set to -1 the entire contents will be stored in memory
-
setMaxDiskUsagePerPart
public void setMaxDiskUsagePerPart(long maxDiskUsagePerPart) Configure the maximum amount of disk space allowed for file parts.By default this is set to -1, meaning that there is no maximum.
Note that this property is ignored when
maxInMemorySize
is set to -1. -
setMaxParts
public void setMaxParts(int maxParts) Specify the maximum number of parts allowed in a given multipart request.By default this is set to -1, meaning that there is no maximum.
-
setFileStorageDirectory
Set the directory used to store parts larger thanmaxInMemorySize
. By default, a directory namedspring-webflux-multipart
is created under the system temporary directory.Note that this property is ignored when
maxInMemorySize
is set to -1.- Throws:
IOException
- if an I/O error occurs, or the parent directory does not exist
-
setBlockingOperationScheduler
public void setBlockingOperationScheduler(reactor.core.scheduler.Scheduler blockingOperationScheduler) Set the ReactorScheduler
to be used for creating files and directories, and writing to files. By default,Schedulers.boundedElastic()
is used, but this property allows for changing it to an externally managed scheduler.Note that this property is ignored when
maxInMemorySize
is set to -1.- See Also:
-
Schedulers.boundedElastic()
-
setHeadersCharset
Set the character set used to decode headers. Defaults to UTF-8 as per RFC 7578.- Parameters:
headersCharset
- the charset to use for decoding headers- Since:
- 5.3.6
- See Also:
-
getReadableMediaTypes
Description copied from interface:HttpMessageReader
Return the list of media types supported by this reader. The list may not apply to every possible target element type and calls to this method should typically be guarded viacanWrite(elementType, null)
. The list may also exclude media types supported only for a specific element type. Alternatively, useHttpMessageReader.getReadableMediaTypes(ResolvableType)
for a more precise list.- Specified by:
getReadableMediaTypes
in interfaceHttpMessageReader<Part>
- Returns:
- the general list of supported media types
-
canRead
Description copied from interface:HttpMessageReader
Whether the given object type is supported by this reader.- Specified by:
canRead
in interfaceHttpMessageReader<Part>
- Parameters:
elementType
- the type of object to checkmediaType
- the media type for the read (possiblynull
)- Returns:
true
if readable,false
otherwise
-
readMono
public reactor.core.publisher.Mono<Part> readMono(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Description copied from interface:HttpMessageReader
Read from the input message and decode to a single object.- Specified by:
readMono
in interfaceHttpMessageReader<Part>
- Parameters:
elementType
- the type of objects in the stream which must have been previously checked viaHttpMessageReader.canRead(ResolvableType, MediaType)
message
- the message to read fromhints
- additional information about how to read and decode the input- Returns:
- the decoded object
-
read
public reactor.core.publisher.Flux<Part> read(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) Description copied from interface:HttpMessageReader
Read from the input message and decode to a stream of objects.- Specified by:
read
in interfaceHttpMessageReader<Part>
- Parameters:
elementType
- the type of objects in the stream which must have been previously checked viaHttpMessageReader.canRead(ResolvableType, MediaType)
message
- the message to read fromhints
- additional information about how to read and decode the input- Returns:
- the decoded stream of elements
-