Uses of Interface
org.springframework.http.codec.multipart.Part
Package
Description
Multipart support.
Mock objects for the functional web framework.
Provides a foundation for both the reactive client and server subpackages.
Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server
package.Infrastructure for annotation-based handler method processing.
Core interfaces and classes for Spring's generic, reactive web support.
Implementations to adapt to the underlying
org.springframework.http.client.reactive
reactive HTTP adapter
and HttpHandler
.-
Uses of Part in org.springframework.http.codec.multipart
Modifier and TypeInterfaceDescriptioninterface
Specialization ofPart
that represents an uploaded file received in a multipart request.interface
Specialization ofPart
for a form field.Modifier and TypeMethodDescriptionMultipartHttpMessageReader.getPartReader()
Return the configured parts reader.reactor.core.publisher.Flux<Part>
DefaultPartHttpMessageReader.read
(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Flux<MultiValueMap<String,
Part>> MultipartHttpMessageReader.read
(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Mono<Part>
DefaultPartHttpMessageReader.readMono
(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) reactor.core.publisher.Mono<MultiValueMap<String,
Part>> MultipartHttpMessageReader.readMono
(ResolvableType elementType, ReactiveHttpInputMessage inputMessage, Map<String, Object> hints) Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<Void>
PartHttpMessageWriter.write
(Publisher<? extends Part> parts, ResolvableType elementType, MediaType mediaType, ReactiveHttpOutputMessage outputMessage, Map<String, Object> hints) -
Uses of Part in org.springframework.mock.web.reactive.function.server
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<MultiValueMap<String,
Part>> MockServerRequest.multipartData()
-
Uses of Part in org.springframework.web.reactive.function
Modifier and TypeMethodDescriptionstatic BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<String,
Part>>, ServerHttpRequest> BodyExtractors.toMultipartData()
Extractor to read multipart data into aMultiValueMap<String, Part>
.static BodyExtractor<reactor.core.publisher.Flux<Part>,
ServerHttpRequest> BodyExtractors.toParts()
Extractor to read multipart data intoFlux<Part>
. -
Uses of Part in org.springframework.web.reactive.function.server
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<MultiValueMap<String,
Part>> ServerRequest.multipartData()
Get the parts of a multipart request if the Content-Type is"multipart/form-data"
or an empty map otherwise. -
Uses of Part in org.springframework.web.reactive.function.server.support
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<MultiValueMap<String,
Part>> ServerRequestWrapper.multipartData()
-
Uses of Part in org.springframework.web.reactive.result.method.annotation
Modifier and TypeMethodDescriptionreactor.core.publisher.Flux<Part>
RequestPartMethodArgumentResolver.getPartValues
(MethodParameter parameter, RequestPart requestPart, boolean isRequired, ServerWebExchange exchange) -
Uses of Part in org.springframework.web.server
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<MultiValueMap<String,
Part>> ServerWebExchange.getMultipartData()
Return the parts of a multipart request if the Content-Type is"multipart/form-data"
or an empty map otherwise.reactor.core.publisher.Mono<MultiValueMap<String,
Part>> ServerWebExchangeDecorator.getMultipartData()
-
Uses of Part in org.springframework.web.server.adapter
Modifier and TypeMethodDescriptionreactor.core.publisher.Mono<MultiValueMap<String,
Part>> DefaultServerWebExchange.getMultipartData()