spring-webclient Questions

1

Solved

We are testing with WebTestClient (SpringBoot) our GraphQL Backend and have problems to see why exactly the test failed. Our code looks like this: webTestClient .post().uri(GQLKonstanten.URL) .b...
Pollaiuolo asked 17/1, 2020 at 14:58

3

Solved

I would like to know whether Spring WebClient is using HTTP/2. How I can determine that?
Shipmaster asked 21/12, 2019 at 17:32

3

Solved

I'd like to avoid having to prefix my attributes with @JsonProperty("property_name") and instead just setup the Spring WebClient builder to convert all snake_cases into camelCases. Is that possib...
Merovingian asked 30/12, 2019 at 18:48

1

Solved

In a Spring WebFlux chain I use a map operation which sometimes may return null and I get a warning : Return null or something nullable from lambda in transformation mehtod. I believe when data is ...
Stephanus asked 21/12, 2019 at 14:28

2

I guess the answer is no, as all references to Bean Validation in the documentation are related to the server side. Is there any support for Bean Validation on the client's side? So that I can val...
Chincapin asked 31/7, 2019 at 16:37

1

I am doing some testing with Spring WebClient. In the following codes, I have set the compress to true. However when I check the debug logs, I can see the "accept-encoding: gzip" header is added, b...
Lipophilic asked 20/8, 2019 at 6:45

1

I have the following error handling in RestTemplate: try { restTemplate.postForObject(..); } catch (ResourceAccessException e) { throw new CustomException("host is down"); } Question: how can ...
Maurizia asked 12/8, 2019 at 9:41

1

Solved

I don't understand reactive webclient works. It says that spring webclient is non-blocking client, but this webclient seems waiting signal onComplete() from remote api, then it can process each ite...
Skyway asked 1/5, 2019 at 15:58

3

I'm using Spring boot and Angular JS . I have a Spring REST Controller that I use to download a File. when I call it using http://localhost:8080/download it works and the file is downloaded. Now I ...
Outline asked 20/4, 2015 at 11:52

© 2022 - 2024 — McMap. All rights reserved.