rest
Netty
rest | Netty | |
---|---|---|
3 | 53 | |
361 | 33,352 | |
1.1% | 0.4% | |
7.7 | 9.5 | |
5 days ago | 3 days ago | |
Java | Java | |
GNU General Public License v3.0 or later | Apache License 2.0 |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
rest
-
What to learn to become a Java developer
There are very few frameworks that I would personally recommend: the Servlet API and JAX-RS are pretty much the only ones I consider decent. I personally avoid JAX-RS because of https://github.com/jakartaee/rest/issues/468 and because you can replace most of its functionality using ~5-10 custom classes.
-
Jakarta EE 10 released!
Have you never used the Servlet API? JPA? Those validation annotations from the javax.validation package? JAX-RS to define REST Endpoints? CDI for dependency injection?
-
Libraries other than Spring Boot for creating web APIs
Take a look at https://github.com/jakartaee/rest/issues/468
Netty
-
Reactor Netty: UDP DNS client example
Code of netty is here and using following library
- Netty: Asynchronous event-driven network application framework
-
New scalable, fault-tolerant, and efficient open-source MQTT broker
We use Netty (https://netty.io/) as the source of the MQTT communication, and we build the MQTT features the MQTT broker should support ourselves on top of that.
-
Modern Async Primitives on iOS, Android, and the Web
In this space, we also have the somewhat related term blocking. Java's NIO library is one well-known non-blocking tool used for managing multiple tasks on a single Java thread. When listening to sockets, most of the time a thread is just blocked, doing nothing until it receives some data. So, it's efficient to use a single thread for monitoring many sockets, to increase the likelihood of the thread having some actual work to do. The Selector API does this but is notoriously challenging to program well. Instead, developers use frameworks like Netty which abstract some of NIO's complexity and layer on some best practices.
-
An investigative journey through concurrent data structures
DirectByteBuffer exhibits an intriguing behavior: it deallocates its backing memory during the finalization process, which occurs after garbage collection (GC) cycles. This poses an issue if your system is conservative with on-heap allocations, leading to infrequent GC cycles. In such cases, there could be a significant delay between the time the memory becomes unreferenced and when it is actually deallocated. This behavior could, in some respects, mimic a memory leak.
This is why some libraries hacks into DirectByteBuffer to deallocate memory explicitly, bypassing the finalizer altogether. For instance, the Netty library has implemented such a workaround, see Netty as an [example](https://github.com/netty/netty/blob/795db4a866401aa172757b95...).
-
Scaling to ~15K requests per second with Java – Part 1
Apologies replying to myself, but Netty, which underpins many of the popular Java backend frameworks, see backward compatibility as more important than supporting green threads.
https://github.com/netty/netty/issues/12816
It'll be interesting to see who (if anyone) picks up Netty's mantle in the Project Loom world.
-
Netty VS java-http - a user suggested alternative
2 projects | 25 May 2023
-
Is jre17 the problem? How do I get an old eclipse? Error: Could not find or load main class netty.DiscardServer Caused by: java.lang.ClassNotFoundException: netty.DiscardServer
Looks fairly recent so I'm glad I had a pre oct22 build https://github.com/netty/netty/issues/12737
-
What are your (favourite) Java best practices, personal tips, hints or just underrated stuff in general?
This is better? https://github.com/netty/netty/blob/4.1/pom.xml
-
Lessons learned from picking a Java driver for Amazon ElastiCache for Redis - Part 2
Given the fact that Lettuce is built with Netty, we also immediately noticed quite an impact on the initialization time (cold start) of our lambda function. Netty is really fast while executing, but takes a bit of time to initialize. The new Lambda Snapstart functionality might help with that.
What are some alternatives?
validation - Jakarta Validation
OkHttp - Square’s meticulous HTTP client for the JVM, Android, and GraalVM.
servlet - Jakarta Servlet
Undertow - High performance non-blocking webserver
persistence
Grizzly
RESTEasy - An Implementation of the Jakarta RESTful Web Services Specification
gRPC - The Java gRPC implementation. HTTP/2 based RPC
avaje-jex - Web routing for Jetty, Grizzly, JDK Http server
KryoNet - TCP/UDP client/server library for Java, based on Kryo
test-driven-learning - Learning tests
MINA - Mirror of Apache MINA