Uses of Class
org.springframework.core.ParameterizedTypeReference
Packages that use ParameterizedTypeReference
Package
Description
Provides basic classes for exception handling and version detection,
and other core helpers that are not specific to any part of the framework.
Contains an abstraction over client-side HTTP.
Support for the RSocket protocol.
Annotations to declare an RSocket service contract with request methods along
with a proxy factory backed by an
RSocketRequester.Mock objects for the functional web framework.
General utility classes for use in unit and integration tests.
Support for testing Spring WebFlux server endpoints via
WebTestClient.Core package of the client-side web support.
Classes supporting the
org.springframework.web.client package.Provides a foundation for both the reactive client and server subpackages.
Provides a reactive
WebClient
that builds on top of the
org.springframework.http.client.reactive reactive HTTP adapter layer.Classes supporting the
org.springframework.web.reactive.function.client package.Provides the types that make up Spring's functional web framework for Reactive environments.
Classes supporting the
org.springframework.web.reactive.function.server package.Support for creating a client proxy for an HTTP service annotated with
HttpExchange methods.Provides the types that make up Spring's functional web framework for Servlet environments.
-
Uses of ParameterizedTypeReference in org.springframework.core
Methods in org.springframework.core that return ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic <T> ParameterizedTypeReference<T>Build aParameterizedTypeReferencewrapping the given type.Methods in org.springframework.core with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic ResolvableTypeResolvableType.forType(ParameterizedTypeReference<?> typeReference) Return aResolvableTypefor the specifiedParameterizedTypeReference. -
Uses of ParameterizedTypeReference in org.springframework.http.client
Methods in org.springframework.http.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T,P extends Publisher<T>>
MultipartBodyBuilder.PartBuilderMultipartBodyBuilder.asyncPart(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofMultipartBodyBuilder.asyncPart(String, Publisher, Class)with aParameterizedTypeReferencefor the element type information. -
Uses of ParameterizedTypeReference in org.springframework.messaging.rsocket
Methods in org.springframework.messaging.rsocket with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionRSocketRequester.RequestSpec.data(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofRSocketRequester.RequestSpec.data(Object, Class)for when the type hint has to have a generic type.<T> voidDefaultMetadataExtractor.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<T> type, BiConsumer<T, Map<String, Object>> mapper) default voidMetadataExtractorRegistry.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<?> targetType, String name) Variant ofMetadataExtractorRegistry.metadataToExtract(MimeType, Class, String)that acceptsParameterizedTypeReferenceinstead ofClassfor specifying a target type with generic parameters.<T> voidMetadataExtractorRegistry.metadataToExtract(MimeType mimeType, ParameterizedTypeReference<T> type, BiConsumer<T, Map<String, Object>> mapper) Variant ofMetadataExtractorRegistry.metadataToExtract(MimeType, Class, BiConsumer)that acceptsParameterizedTypeReferenceinstead ofClassfor specifying a target type with generic parameters.<T> reactor.core.publisher.Flux<T>RSocketRequester.RetrieveSpec.retrieveFlux(ParameterizedTypeReference<T> dataTypeRef) Variant ofRSocketRequester.RetrieveSpec.retrieveFlux(Class)for when the dataType has to have a generic type.<T> reactor.core.publisher.Mono<T>RSocketRequester.RetrieveSpec.retrieveMono(ParameterizedTypeReference<T> dataTypeRef) Variant ofRSocketRequester.RetrieveSpec.retrieveMono(Class)for when the dataType has to have a generic type. -
Uses of ParameterizedTypeReference in org.springframework.messaging.rsocket.service
Methods in org.springframework.messaging.rsocket.service that return ParameterizedTypeReferenceModifier and TypeMethodDescriptionRSocketRequestValues.getPayloadElementType()Return the element type for a Publisher payload.Methods in org.springframework.messaging.rsocket.service with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T,P extends Publisher<T>>
RSocketRequestValues.BuilderRSocketRequestValues.Builder.setPayload(P payload, ParameterizedTypeReference<T> elementTye) Set the request payload value to be serialized.Constructors in org.springframework.messaging.rsocket.service with parameters of type ParameterizedTypeReferenceModifierConstructorDescriptionRSocketRequestValues(String route, List<Object> routeVariables, org.springframework.messaging.rsocket.service.RSocketRequestValues.MetadataHelper metadataHelper, Object payloadValue, Publisher<?> payload, ParameterizedTypeReference<?> payloadElementType) -
Uses of ParameterizedTypeReference in org.springframework.mock.web.reactive.function.server
Methods in org.springframework.mock.web.reactive.function.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<S> reactor.core.publisher.Flux<S>MockServerRequest.bodyToFlux(ParameterizedTypeReference<S> typeReference) <S> reactor.core.publisher.Mono<S>MockServerRequest.bodyToMono(ParameterizedTypeReference<S> typeReference) -
Uses of ParameterizedTypeReference in org.springframework.test.util
Methods in org.springframework.test.util with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> voidJsonPathExpectationsHelper.assertValue(String content, Matcher<? super T> matcher, ParameterizedTypeReference<T> targetType) An overloaded variant ofJsonPathExpectationsHelper.assertValue(String, Matcher)that also accepts a target type for the resulting value that allows generic types to be defined.<T> TJsonPathExpectationsHelper.evaluateJsonPath(String content, ParameterizedTypeReference<T> targetType) Variant ofJsonPathExpectationsHelper.evaluateJsonPath(String)with a target type that has generics. -
Uses of ParameterizedTypeReference in org.springframework.test.web.reactive.server
Methods in org.springframework.test.web.reactive.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionWebTestClient.RequestBodySpec.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Set the body from the given producer.<T,S extends Publisher<T>>
WebTestClient.RequestHeadersSpec<?>WebTestClient.RequestBodySpec.body(S publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofWebTestClient.RequestBodySpec.body(Publisher, Class)that allows providing element type information with generics.<B> WebTestClient.BodySpec<B,?> WebTestClient.ResponseSpec.expectBody(ParameterizedTypeReference<B> bodyType) Alternative toWebTestClient.ResponseSpec.expectBody(Class)that accepts information about a target type with generics.<E> WebTestClient.ListBodySpec<E>WebTestClient.ResponseSpec.expectBodyList(ParameterizedTypeReference<E> elementType) Alternative toWebTestClient.ResponseSpec.expectBodyList(Class)that accepts information about a target type with generics.<T> FluxExchangeResult<T>WebTestClient.ResponseSpec.returnResult(ParameterizedTypeReference<T> elementTypeRef) Alternative toWebTestClient.ResponseSpec.returnResult(Class)that accepts information about a target type with generics.JsonPathAssertions.value(ParameterizedTypeReference<T> targetType, Consumer<T> consumer) Consume the result of the JSONPath evaluation and provide a parameterized type.JsonPathAssertions.value(ParameterizedTypeReference<T> targetType, Matcher<? super T> matcher) -
Uses of ParameterizedTypeReference in org.springframework.web.client
Methods in org.springframework.web.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionRestClient.RequestBodySpec.body(T body, ParameterizedTypeReference<T> bodyType) Set the body of the request to the givenObject.<T> TRestClient.ResponseSpec.body(ParameterizedTypeReference<T> bodyType) Extract the body as an object of the given type.<T> TRestClient.RequestHeadersSpec.ConvertibleClientHttpResponse.bodyTo(ParameterizedTypeReference<T> bodyType) Extract the response body as an object of the given type.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) Execute the HTTP method to the given URI template, writing the given request entity to the request, and return the response asResponseEntity.<T> ResponseEntity<T>RestOperations.exchange(RequestEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) Execute the request specified in the givenRequestEntityand return the response asResponseEntity.<T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Object... uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(String url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType, Map<String, ?> uriVariables) <T> ResponseEntity<T>RestTemplate.exchange(URI url, HttpMethod method, HttpEntity<?> requestEntity, ParameterizedTypeReference<T> responseType) <T> ResponseEntity<T>RestTemplate.exchange(RequestEntity<?> entity, ParameterizedTypeReference<T> responseType) <E> ERestClientResponseException.getResponseBodyAs(ParameterizedTypeReference<E> targetType) <T> ResponseEntity<T>RestClient.ResponseSpec.toEntity(ParameterizedTypeReference<T> bodyType) Return aResponseEntitywith the body decoded to an Object of the given type. -
Uses of ParameterizedTypeReference in org.springframework.web.client.support
Methods in org.springframework.web.client.support with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> TRestClientAdapter.exchangeForBody(HttpRequestValues values, ParameterizedTypeReference<T> bodyType) <T> TRestTemplateAdapter.exchangeForBody(HttpRequestValues values, ParameterizedTypeReference<T> bodyType) <T> ResponseEntity<T>RestClientAdapter.exchangeForEntity(HttpRequestValues values, ParameterizedTypeReference<T> bodyType) <T> ResponseEntity<T>RestTemplateAdapter.exchangeForEntity(HttpRequestValues values, ParameterizedTypeReference<T> bodyType) -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function
Methods in org.springframework.web.reactive.function with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionstatic <T,P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.fromMultipartAsyncData(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofBodyInserters.fromMultipartAsyncData(String, Publisher, Class)that accepts aParameterizedTypeReferencefor the element type, which allows specifying generic type information.static <T> BodyInserter<T,ReactiveHttpOutputMessage> BodyInserters.fromProducer(T producer, ParameterizedTypeReference<?> elementTypeRef) Inserter to write the given producer of value(s) which must be aPublisheror another producer adaptable to aPublisherviaReactiveAdapterRegistry.static <T,P extends Publisher<T>>
BodyInserter<P,ReactiveHttpOutputMessage> BodyInserters.fromPublisher(P publisher, ParameterizedTypeReference<T> elementTypeRef) Inserter to write the givenPublisher.static <T> BodyInserter<T,ReactiveHttpOutputMessage> BodyInserters.fromValue(T body, ParameterizedTypeReference<T> bodyType) Inserter to write the given value.static <T> BodyExtractor<reactor.core.publisher.Flux<T>,ReactiveHttpInputMessage> BodyExtractors.toFlux(ParameterizedTypeReference<T> typeRef) Variant ofBodyExtractors.toFlux(Class)for type information with generics.static <T> BodyExtractor<reactor.core.publisher.Mono<T>,ReactiveHttpInputMessage> BodyExtractors.toMono(ParameterizedTypeReference<T> elementTypeRef) Variant ofBodyExtractors.toMono(Class)for type information with generics.<T,P extends Publisher<T>>
BodyInserters.MultipartInserterBodyInserters.MultipartInserter.withPublisher(String name, P publisher, ParameterizedTypeReference<T> typeReference) Variant ofBodyInserters.MultipartInserter.withPublisher(String, Publisher, Class)that accepts aParameterizedTypeReferencefor the element type, which allows specifying generic type information. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.client
Methods in org.springframework.web.reactive.function.client with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<S,P extends Publisher<S>>
ClientRequest.BuilderClientRequest.Builder.body(P publisher, ParameterizedTypeReference<S> typeReference) Set the body of the request to the givenPublisherand return it.WebClient.RequestBodySpec.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, ParameterizedTypeReference)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T,P extends Publisher<T>>
WebClient.RequestHeadersSpec<?>WebClient.RequestBodySpec.body(P publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.RequestBodySpec.body(Publisher, Class)that allows providing element type information with generics.<T> reactor.core.publisher.Flux<T>ClientResponse.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) Extract the body to aFlux.<T> reactor.core.publisher.Flux<T>WebClient.ResponseSpec.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.bodyToFlux(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<T>ClientResponse.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) Extract the body to aMono.<T> reactor.core.publisher.Mono<T>WebClient.ResponseSpec.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.bodyToMono(Class)with aParameterizedTypeReference.<T> WebClient.RequestHeadersSpec<?>WebClient.RequestBodySpec.bodyValue(T body, ParameterizedTypeReference<T> bodyType) Shortcut forWebClient.RequestBodySpec.body(BodyInserter)with a value inserter.<E> EWebClientResponseException.getResponseBodyAs(ParameterizedTypeReference<E> targetType) <T> reactor.core.publisher.Mono<ResponseEntity<T>>ClientResponse.toEntity(ParameterizedTypeReference<T> bodyTypeReference) Return this response as a delayedResponseEntity.<T> reactor.core.publisher.Mono<ResponseEntity<T>>WebClient.ResponseSpec.toEntity(ParameterizedTypeReference<T> bodyTypeReference) Variant ofWebClient.ResponseSpec.toEntity(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>WebClient.ResponseSpec.toEntityFlux(ParameterizedTypeReference<T> elementTypeReference) Variant ofWebClient.ResponseSpec.toEntityFlux(Class)with aParameterizedTypeReference.<T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>ClientResponse.toEntityList(ParameterizedTypeReference<T> elementTypeRef) Return this response as a delayed list ofResponseEntitys.<T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>WebClient.ResponseSpec.toEntityList(ParameterizedTypeReference<T> elementTypeRef) Variant ofWebClient.ResponseSpec.toEntityList(Class)with aParameterizedTypeReference. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.client.support
Methods in org.springframework.web.reactive.function.client.support with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> reactor.core.publisher.Flux<T>ClientResponseWrapper.bodyToFlux(ParameterizedTypeReference<T> elementTypeRef) <T> reactor.core.publisher.Mono<T>ClientResponseWrapper.bodyToMono(ParameterizedTypeReference<T> elementTypeRef) <T> reactor.core.publisher.Flux<T>WebClientAdapter.exchangeForBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<T>WebClientAdapter.exchangeForBodyMono(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>WebClientAdapter.exchangeForEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<T>>WebClientAdapter.exchangeForEntityMono(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<T>>ClientResponseWrapper.toEntity(ParameterizedTypeReference<T> bodyTypeReference) <T> reactor.core.publisher.Mono<ResponseEntity<List<T>>>ClientResponseWrapper.toEntityList(ParameterizedTypeReference<T> elementTypeRef) -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.server
Methods in org.springframework.web.reactive.function.server with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescriptionreactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder.body(Object producer, ParameterizedTypeReference<?> elementTypeRef) Variant ofServerResponse.BodyBuilder.body(Publisher, ParameterizedTypeReference)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T,P extends Publisher<T>>
reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder.body(P publisher, ParameterizedTypeReference<T> elementTypeRef) Variant ofServerResponse.BodyBuilder.body(Publisher, Class)that allows using any producer that can be resolved toPublisherviaReactiveAdapterRegistry.<T> reactor.core.publisher.Flux<T>ServerRequest.bodyToFlux(ParameterizedTypeReference<T> typeReference) Extract the body to aFlux.<T> reactor.core.publisher.Mono<T>ServerRequest.bodyToMono(ParameterizedTypeReference<T> typeReference) Extract the body to aMono.<T> reactor.core.publisher.Mono<ServerResponse>ServerResponse.BodyBuilder.bodyValue(T body, ParameterizedTypeReference<T> bodyType) Set the body of the response to the givenObjectand return it.static <T> EntityResponse.Builder<T>EntityResponse.fromProducer(T producer, ParameterizedTypeReference<?> typeReference) Create a builder with the given producer.static <T,P extends Publisher<T>>
EntityResponse.Builder<P>EntityResponse.fromPublisher(P publisher, ParameterizedTypeReference<T> typeReference) Create a builder with the given publisher. -
Uses of ParameterizedTypeReference in org.springframework.web.reactive.function.server.support
Methods in org.springframework.web.reactive.function.server.support with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> reactor.core.publisher.Flux<T>ServerRequestWrapper.bodyToFlux(ParameterizedTypeReference<T> typeReference) <T> reactor.core.publisher.Mono<T>ServerRequestWrapper.bodyToMono(ParameterizedTypeReference<T> typeReference) -
Uses of ParameterizedTypeReference in org.springframework.web.service.invoker
Methods in org.springframework.web.service.invoker that return ParameterizedTypeReferenceModifier and TypeMethodDescriptionReactiveHttpRequestValues.getBodyPublisherElementType()Return the element type for a body publisher.HttpRequestValues.getBodyValueType()Return the type for the body value.Methods in org.springframework.web.service.invoker with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T,P extends Publisher<T>>
ReactiveHttpRequestValues.BuilderReactiveHttpRequestValues.Builder.addRequestPartPublisher(String name, P publisher, ParameterizedTypeReference<T> elementTye) Variant ofReactiveHttpRequestValues.Builder.addRequestPart(String, Object)that allows the part value to be produced by aPublisher.<T> TAbstractReactorHttpExchangeAdapter.exchangeForBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> THttpExchangeAdapter.exchangeForBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Perform the given request and decode the response content to the given type.<T> reactor.core.publisher.Flux<T>ReactorHttpExchangeAdapter.exchangeForBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Perform the given request and decode the response content to a stream with elements of the given type.<T> reactor.core.publisher.Mono<T>ReactorHttpExchangeAdapter.exchangeForBodyMono(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Perform the given request and decode the response content to the given type.<T> ResponseEntity<T>AbstractReactorHttpExchangeAdapter.exchangeForEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> ResponseEntity<T>HttpExchangeAdapter.exchangeForEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Variant ofHttpExchangeAdapter.exchangeForBody(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>ReactorHttpExchangeAdapter.exchangeForEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Variant ofReactorHttpExchangeAdapter.exchangeForBodyFlux(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<ResponseEntity<T>>ReactorHttpExchangeAdapter.exchangeForEntityMono(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Variant ofReactorHttpExchangeAdapter.exchangeForBodyMono(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<T>AbstractReactorHttpExchangeAdapter.requestToBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<T>HttpClientAdapter.requestToBody(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Deprecated, for removal: This API element is subject to removal in a future version.Perform the given request and decode the response content to the given type.<T> reactor.core.publisher.Flux<T>AbstractReactorHttpExchangeAdapter.requestToBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Flux<T>HttpClientAdapter.requestToBodyFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Deprecated, for removal: This API element is subject to removal in a future version.Perform the given request and decode the response content to a stream with elements of the given type.<T> reactor.core.publisher.Mono<ResponseEntity<T>>AbstractReactorHttpExchangeAdapter.requestToEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<T>>HttpClientAdapter.requestToEntity(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Deprecated, for removal: This API element is subject to removal in a future version.Variant ofHttpClientAdapter.requestToBody(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>AbstractReactorHttpExchangeAdapter.requestToEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) <T> reactor.core.publisher.Mono<ResponseEntity<reactor.core.publisher.Flux<T>>>HttpClientAdapter.requestToEntityFlux(HttpRequestValues requestValues, ParameterizedTypeReference<T> bodyType) Deprecated, for removal: This API element is subject to removal in a future version.Variant ofHttpClientAdapter.requestToBodyFlux(HttpRequestValues, ParameterizedTypeReference)with additional access to the response status and headers.<T,P extends Publisher<T>>
voidReactiveHttpRequestValues.Builder.setBodyPublisher(P body, ParameterizedTypeReference<T> elementTye) Set the request body as a Reactive StreamsPublisher.voidHttpRequestValues.Builder.setBodyValue(Object bodyValue, ParameterizedTypeReference<?> valueType) Variant ofHttpRequestValues.Builder.setBodyValue(Object)with the body type. -
Uses of ParameterizedTypeReference in org.springframework.web.servlet.function
Methods in org.springframework.web.servlet.function with parameters of type ParameterizedTypeReferenceModifier and TypeMethodDescription<T> TServerRequest.body(ParameterizedTypeReference<T> bodyType) Extract the body as an object of the given type.<T> ServerResponseServerResponse.BodyBuilder.body(T body, ParameterizedTypeReference<T> bodyType) Set the body of the response to the givenObjectand return it.static <T> EntityResponse.Builder<T>EntityResponse.fromObject(T t, ParameterizedTypeReference<T> entityType) Create a builder with the given object and type reference.