Uses of Interface
org.springframework.http.codec.multipart.Part
Packages that use 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
Subinterfaces of Part in org.springframework.http.codec.multipartModifier and TypeInterfaceDescriptioninterfaceSpecialization ofPartthat represents an uploaded file received in a multipart request.interfaceSpecialization ofPartfor a form field.Classes in org.springframework.http.codec.multipart that implement interfaces with type arguments of type PartModifier and TypeClassDescriptionclassclassHttpMessageReaderfor reading"multipart/form-data"requests into aMultiValueMap<String, Part>.classHttpMessageWriterfor writing withPart.Methods in org.springframework.http.codec.multipart that return types with arguments of type PartModifier and TypeMethodDescriptionMultipartHttpMessageReader.getPartReader()Return the configured parts reader.DefaultPartHttpMessageReader.read(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) MultipartHttpMessageReader.read(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) DefaultPartHttpMessageReader.readMono(ResolvableType elementType, ReactiveHttpInputMessage message, Map<String, Object> hints) MultipartHttpMessageReader.readMono(ResolvableType elementType, ReactiveHttpInputMessage inputMessage, Map<String, Object> hints) Method parameters in org.springframework.http.codec.multipart with type arguments of type PartModifier and TypeMethodDescriptionPartHttpMessageWriter.write(Publisher<? extends Part> parts, ResolvableType elementType, @Nullable MediaType mediaType, ReactiveHttpOutputMessage outputMessage, Map<String, Object> hints) Constructor parameters in org.springframework.http.codec.multipart with type arguments of type Part -
Uses of Part in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server that return types with arguments of type Part -
Uses of Part in org.springframework.web.reactive.function
Methods in org.springframework.web.reactive.function that return types with arguments of type PartModifier and TypeMethodDescriptionstatic BodyExtractor<Mono<MultiValueMap<String, Part>>, ServerHttpRequest> BodyExtractors.toMultipartData()Extractor to read multipart data into aMultiValueMap<String, Part>.static BodyExtractor<Flux<Part>, ServerHttpRequest> BodyExtractors.toParts()Extractor to read multipart data intoFlux<Part>. -
Uses of Part in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server that return types with arguments of type PartModifier and TypeMethodDescriptionServerRequest.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
Methods in org.springframework.web.reactive.function.server.support that return types with arguments of type Part -
Uses of Part in org.springframework.web.reactive.result.method.annotation
Methods in org.springframework.web.reactive.result.method.annotation that return types with arguments of type PartModifier and TypeMethodDescriptionRequestPartMethodArgumentResolver.getPartValues(MethodParameter parameter, @Nullable RequestPart requestPart, boolean isRequired, ServerWebExchange exchange) -
Uses of Part in org.springframework.web.server
Methods in org.springframework.web.server that return types with arguments of type PartModifier and TypeMethodDescriptionServerWebExchange.getMultipartData()Return the parts of a multipart request if the Content-Type is"multipart/form-data"or an empty map otherwise.ServerWebExchangeDecorator.getMultipartData() -
Uses of Part in org.springframework.web.server.adapter
Methods in org.springframework.web.server.adapter that return types with arguments of type Part