-
Updated
Mar 8, 2021 - Java
netty
Here are 1,212 public repositories matching this topic...
-
Updated
Jun 4, 2021 - Java
-
Updated
Jun 6, 2021 - Java
-
Updated
Jun 3, 2021
-
Updated
Apr 22, 2021 - Java
Not that complicated to implement:
- introduce in SslClientContext the same kind of changes as in SslServerContext so it's no longer
-
Updated
Jun 3, 2021 - Java
Currently, we proivde FilteredHttpRequest and FilteredHttpResponse for tranforming a headers or data.
But it is a bit difficult to implement FilteredHttp* because users have to check the type of HttpObject.
Most users might not know the hierarchical relation between HttpOject, HttpHeaders, ResponseHeaders and HttpData
return new FilteredHttpResponse(response) {
-
Updated
Jun 5, 2021 - Java
-
Updated
Jun 2, 2021 - Java
-
Updated
Feb 10, 2021
-
Updated
Apr 19, 2021 - Java
-
Updated
Jun 4, 2021 - Java
-
Updated
May 7, 2021
My following WebClient is working fine with internet connection but not through our proxy connection.
WebClient webClient = WebClient.builder()
.baseUrl("https://targetsite.com")
.build();
webClient.post()
.uri("/service/serviceName")
.body(BodyInserters.fromObject(reqData))
.retrieve()
.bodyToMono(WebServiceResponse.class)
Event though, the sam
-
Updated
Jun 28, 2020
-
Updated
Jan 18, 2021 - Java
-
Updated
Jun 3, 2021 - Java
Improve this page
Add a description, image, and links to the netty topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the netty topic, visit your repo's landing page and select "manage topics."
这里的路由和server通信是否可以用一个长连接来维护更好