Top "Netty" questions

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

When is "java.io.IOException:Connection reset by peer" thrown?

ERROR GServerHandler - java.io.IOException: Connection reset by peer java.io.IOException: Connection reset by peer at sun.nio.…

java tcp netty ioexception
Netty vs Apache MINA

They both provide roughly the same functionality. Which one should I choose to develop my high-performance TCP server? What are …

java network-programming apache-mina netty
What's the difference between Jetty and Netty?

What is the main difference between Jetty and Netty? Netty is part of Jboss, but is it the default web …

java jetty netty
How to hide warning "Illegal reflective access" in java 9 without JVM argument?

I just tried to run my server with Java 9 and got next warning: WARNING: An illegal reflective access operation has …

java jvm netty java-9
How to fix the maven check style error

Currently I just tried to download and build to make the Netty source code work. But when I tried to …

java maven netty
What are the Netty alternatives for high-performance networking?

I am in the process of choosing a networking library to implement a client/server system that cannot spare any …

java networking real-time netty nio
Netty java getting data from ByteBuf

How to get a byte array from ByteBuf efficiently in the code below? I need to get the array and …

java netty
Netty based non-blocking REST framework

I am working on a RESTfull application which requires high scalability. I am considering Netty based frameworks for RESTfull applications. …

java rest netty nio resteasy
Convert from JSon to multiple unknown java object types using GSon

I have a netty decoder which uses GSon to convert JSon coming from web client to appropriate java objects. The …

java json gson netty
How Netty uses thread pools?

Can you please explain how Netty uses thread pools to work? Do I understand correctly, that there are two kinds …

java netty