spring5 Questions
3
Solved
I have the following code
public ClientResponse doGet(HttpServletRequest request, URI uri) {
return webClient.get()
.uri(uri.toASCIIString())
.headers(headers -> headers.putAll(processRequest...
Fernandofernas asked 25/9, 2020 at 9:57
0
With Spring 4.3.5, we have been using an application architecture where we initialize some of the beans at a go and then use the beans as "Reference" for other beans.
Something like this
...
Fancywork asked 5/3, 2022 at 19:36
1
I am using Spring WebClient to call a rest service. The code for the post call as mentioned below.
Mono<ClientResponse> response = client.post()
.uri(uriBuilder -> uriBuilder.build())
....
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
1
© 2022 - 2024 — McMap. All rights reserved.