| パッケージ | 説明 |
|---|---|
| org.springframework.http.codec.multipart | マルチパートのサポート。 |
| org.springframework.mock.web.reactive.function.server | 関数 Web フレームワークのモックオブジェクト。 |
| org.springframework.web.reactive.function | リアクティブクライアントとサーバーサブパッケージの両方の基盤を提供します。 |
| org.springframework.web.reactive.function.server | Spring のリアクティブ環境用の関数 Web フレームワークを構成する型を提供します。 |
| org.springframework.web.reactive.function.server.support | org.springframework.web.reactive.function.server パッケージをサポートするクラス。 |
| org.springframework.web.reactive.result.method.annotation | アノテーションベースのハンドラーメソッド処理のインフラストラクチャ。 |
| org.springframework.web.server | Spring の一般的なリアクティブ Web サポートのコアインターフェースとクラス。 |
| org.springframework.web.server.adapter | 基礎となる org.springframework.http.client.reactive リアクティブ HTTP アダプターと HttpHandler に適応する実装。 |
| 修飾子と型 | インターフェースと説明 |
|---|---|
interface | FilePart マルチパートリクエストで受信したアップロードファイルを表す Part の特殊化。 |
interface | FormFieldPart フォームフィールド用の Part の特殊化。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
HttpMessageReader<Part> | MultipartHttpMessageReader.getPartReader() 設定したパーツリーダーを返却してください。 |
reactor.core.publisher.Flux<MultiValueMap<StringSE, Part>> | MultipartHttpMessageReader.read(ResolvableType elementType, ReactiveHttpInputMessage message, MapSE<StringSE, ObjectSE> hints) |
reactor.core.publisher.Flux<Part> | DefaultPartHttpMessageReader.read(ResolvableType elementType, ReactiveHttpInputMessage message, MapSE<StringSE, ObjectSE> hints) |
reactor.core.publisher.Flux<Part> | SynchronossPartHttpMessageReader.read(ResolvableType elementType, ReactiveHttpInputMessage message, MapSE<StringSE, ObjectSE> hints) |
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | MultipartHttpMessageReader.readMono(ResolvableType elementType, ReactiveHttpInputMessage inputMessage, MapSE<StringSE, ObjectSE> hints) |
reactor.core.publisher.Mono<Part> | DefaultPartHttpMessageReader.readMono(ResolvableType elementType, ReactiveHttpInputMessage message, MapSE<StringSE, ObjectSE> hints) |
reactor.core.publisher.Mono<Part> | SynchronossPartHttpMessageReader.readMono(ResolvableType elementType, ReactiveHttpInputMessage message, MapSE<StringSE, ObjectSE> hints) |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<VoidSE> | PartHttpMessageWriter.write(Publisher<? extends Part> parts, ResolvableType elementType, MediaType mediaType, ReactiveHttpOutputMessage outputMessage, MapSE<StringSE, ObjectSE> hints) |
| コンストラクターと説明 |
|---|
MultipartHttpMessageReader(HttpMessageReader<Part> partReader) |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | MockServerRequest.multipartData() |
| 修飾子と型 | メソッドと説明 |
|---|---|
static BodyExtractor<reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>>,ServerHttpRequest> | BodyExtractors.toMultipartData() マルチパートデータを MultiValueMap<String, Part> に読み込むエクストラクター。 |
static BodyExtractor<reactor.core.publisher.Flux<Part>,ServerHttpRequest> | BodyExtractors.toParts() マルチパートデータを Flux<Part> に読み込むエクストラクター。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | ServerRequest.multipartData()Content-Type が "multipart/form-data" の場合はマルチパートリクエストのパーツを取得し、それ以外の場合は空のマップを取得します。 |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | ServerRequestWrapper.multipartData() |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Flux<Part> | RequestPartMethodArgumentResolver.getPartValues(MethodParameter parameter, RequestPart requestPart, boolean isRequired, ServerWebExchange exchange) |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | ServerWebExchange.getMultipartData()Content-Type が "multipart/form-data" である場合はマルチパートリクエストの部分を返し、そうでない場合は空のマップを返します。 |
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | ServerWebExchangeDecorator.getMultipartData() |
| 修飾子と型 | メソッドと説明 |
|---|---|
reactor.core.publisher.Mono<MultiValueMap<StringSE, Part>> | DefaultServerWebExchange.getMultipartData() |