Top "Netty" questions

An open source asynchronous event-driven network application framework written in Java.

How to change HTTP port that Play2 is listening on

The documentation says: $ play start Note: the HTTP port can be set by passing -Dhttp.port system variable but I'm …

playframework netty playframework-2.0
Is hosting a Netty Server inside Tomcat feasible/desirable?

We building a Netty/NIO based service, and I'm considering the deployment of this service to our production environment. Our …

java deployment tomcat nio netty
RabbitMQ - Close Idle/dangling channels

I have a multi-threaded application that publishes incoming messages to a rabbitmq exchange. Using the rabbitmq java client, I create …

multithreading rabbitmq netty channels
In Netty 4, what's the difference between ctx.close and ctx.channel.close?

Is there any difference? Is ctx.close just a shorter version of ctx.channel.close?

netty
Books and articles on Netty

Are there some good articles/books about how to use Netty? The documentation is short, and it's not simple for …

java netty
PlayFramework 2.4.6 error 413 Request Entity Too Large

I am using PlayFramework 2.4.6, trying to upload a multipart file (size 18M) and the server returns the following error: For …

playframework netty multipartform-data playframework-2.4
Netty 4 multiple client

I need to make the client is able to make many connections. I use Netty 4.0. Unfortunately all existing examples do …

java client netty connection
Spring WebClient throws javax.net.ssl.SSLException: SSLEngine closed already when used heavily

That's my code: WebClient.create().post() .uri(URI.create(url)) .header("Authorization", "Basic " + Base64Utils.encodeToString(("username:password").getBytes(UTF_8))) .…

netty spring-webflux sslengine
Efficient way to convert io.netty.buffer.ByteBuf to java.nio.ByteBuffer

I came across this query: Create a ByteBuf in Netty 4.0 about conversion from byte[] to ByteBuf and ByteBuffer to ByteBuf. …

java netty bytebuffer
Spring webFlux differrences when Netty vs Tomcat is used under the hood

I am learninig spring webflux and I've read the following series of articles(first, second, third) In the third Article …

java tomcat netty spring-webflux nonblocking