Top "Netty" questions

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

Servlet API implementation using Netty

Has anyone made a Servlet API implementation built on top of Netty? I'm tempted to build my own as I …

java servlets nio netty
Netty slower than Tomcat

We just finished building a server to store data to disk and fronted it with Netty. During load testing we …

java tomcat io netty
Which NIO library (Netty, Grizzly, kryonet, ...) for simple backend server implementation in Java?

Our frontend is simple Jetty (might be replaced with Tomcat later on) server. Through servlets, we are providing a public …

java rmi netty grizzly kryonet
Finding out what network sockets are open in the current Java VM

I'm writing an end-to-end test that my Java program releases all of its resources - threads, server sockets, client sockets. …

java sockets monitoring netty
Netty- cannot access class jdk.internal.misc.Unsafe

When I upgraded the Java from 8 to 11, I got an error from Netty about the "jdk.internal.misc.Unsafe", the …

java netty java-11
Netty + ProtoBuffer: A few communication messages for one connection

While reading the Netty tutorial, I've found a simple description of how to integrate Netty and Google Protocol Buffers. I've …

java static protocol-buffers netty
Netty - How to get server response in the client

I'm mostly there with Netty but one concept is still alluding me, and I can't find anything in the tutorials …

java networking client-server netty
Implementing keep-alive messages in Netty using WriteTimeoutHandler

I am using Netty 3.2.7. I am trying to write functionality in my client such that if no messages are written …

java netty
How to get server response with netty client

I want to write a netty based client. It should have method public String send(String msg); which should return …

java client-server netty
PrematureCloseException: Connection prematurely closed

im using Web-flux/Reactive and Webclient, running it on tomcat and spring-boot. Everything works fine. I read a lot about …

spring netty spring-webflux reactive spring-webclient