From ef5776867ae2f76659e126211cc09077c1cfc6ff Mon Sep 17 00:00:00 2001 From: yegorius Date: Mon, 6 Apr 2015 00:22:13 +0300 Subject: [PATCH 1/3] Add Grizzly and Undertow to Networking --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 66251e7..c4014fc 100644 --- a/README.md +++ b/README.md @@ -281,8 +281,10 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by o *Libraries for network programming.* +* [Grizzly](https://grizzly.java.net/) - NIO framework. Used as a network layer in Jetty. * [Netty](http://netty.io/) - A framework for building high performance network applications. * [OkHttp](http://square.github.io/okhttp/) - An HTTP+SPDY client for Android and Java applications. +* [Undertow](http://undertow.io/) - Web server providing both blocking and non-blocking API’s based on NIO. Used as a network layer in WildFly. ## ORM From 1fdc48bc058ce98bbf4964e30bd7f45b7f2b79c6 Mon Sep 17 00:00:00 2001 From: yegorius Date: Mon, 6 Apr 2015 01:29:04 +0300 Subject: [PATCH 2/3] Add args4j to Utilities --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index c4014fc..eec7532 100644 --- a/README.md +++ b/README.md @@ -387,6 +387,7 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by o *Libraries which provide general utility functions.* +* [args4j](http://args4j.kohsuke.org/) - Command line arguments parser * [Apache Commons](http://commons.apache.org/) - Provides different general purpose functions like configuration, validation, collections, file upload or XML processing. * [Guava](http://code.google.com/p/guava-libraries/) - Collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, and so forth. * [javatuples](http://www.javatuples.org/) - Does what it says, although the concept of tuples in general is debatable. From 19aa8d3f2f61f07f177986a1531fa10d68cfa6f6 Mon Sep 17 00:00:00 2001 From: yegorius Date: Mon, 6 Apr 2015 10:49:47 +0300 Subject: [PATCH 3/3] fix: Grizzly is used in Glassfish --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index eec7532..0ec42d1 100644 --- a/README.md +++ b/README.md @@ -281,7 +281,7 @@ A curated list of awesome Java frameworks, libraries and software. Inspired by o *Libraries for network programming.* -* [Grizzly](https://grizzly.java.net/) - NIO framework. Used as a network layer in Jetty. +* [Grizzly](https://grizzly.java.net/) - NIO framework. Used as a network layer in Glassfish. * [Netty](http://netty.io/) - A framework for building high performance network applications. * [OkHttp](http://square.github.io/okhttp/) - An HTTP+SPDY client for Android and Java applications. * [Undertow](http://undertow.io/) - Web server providing both blocking and non-blocking API’s based on NIO. Used as a network layer in WildFly.