-
Updated
May 18, 2020 - Java
netty
Here are 1,099 public repositories matching this topic...
-
Updated
Oct 10, 2020 - Java
-
Updated
Oct 9, 2020 - Java
-
Updated
Oct 7, 2020 - Java
I've got to send a multipart request. The first part is a json that describes all following parts. Other parts are raw file bytes. The number of files could vary.
Current state:
It is possible to assign only the whole body to a request using Pebbple. But as far as I know, Gatling treats PebbleBody as a regular String, so that it is impossible to send raw file content (PDF for example) in r
-
Updated
Oct 6, 2020 - Java
In our codebase, we push RequestContext and immediately run some code with try-with-resources.
For example:
try (SafeCloseable ignored = ctx.push()) {
logger.trace(decorate(msg));
}If RequestContext provides run(Runnable) or call(Callable) we can reduce boilerplate code and simplify it.
ctx.run(() -> logger.trace(decorate(msg));This is inspired by g
-
Updated
Oct 9, 2020 - Java
-
Updated
Oct 2, 2020 - Java
-
Updated
Apr 25, 2020
-
Updated
Sep 27, 2020 - Java
-
Updated
Jun 28, 2020
-
Updated
Jun 15, 2020 - Java
-
Updated
Sep 9, 2020 - Java
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
Jul 1, 2020 - 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通信是否可以用一个长连接来维护更好