From db73c9805c5c5c967edc8d08073bd0a97a8c609c Mon Sep 17 00:00:00 2001 From: WangXin Date: Mon, 20 Nov 2017 23:56:12 +0800 Subject: [PATCH 1/3] add rpc framework dubbo --- .idea/awesome-java.iml | 9 + .idea/encodings.xml | 6 + .idea/inspectionProfiles/Project_Default.xml | 40 ++ .idea/misc.xml | 4 + .idea/modules.xml | 8 + .idea/thriftCompiler.xml | 6 + .idea/vcs.xml | 6 + .idea/workspace.xml | 367 +++++++++++++++++++ README.md | 1 + 9 files changed, 447 insertions(+) create mode 100644 .idea/awesome-java.iml create mode 100644 .idea/encodings.xml create mode 100644 .idea/inspectionProfiles/Project_Default.xml create mode 100644 .idea/misc.xml create mode 100644 .idea/modules.xml create mode 100644 .idea/thriftCompiler.xml create mode 100644 .idea/vcs.xml create mode 100644 .idea/workspace.xml diff --git a/.idea/awesome-java.iml b/.idea/awesome-java.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/awesome-java.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/encodings.xml b/.idea/encodings.xml new file mode 100644 index 0000000..97626ba --- /dev/null +++ b/.idea/encodings.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/inspectionProfiles/Project_Default.xml b/.idea/inspectionProfiles/Project_Default.xml new file mode 100644 index 0000000..d14731a --- /dev/null +++ b/.idea/inspectionProfiles/Project_Default.xml @@ -0,0 +1,40 @@ + + + + \ No newline at end of file diff --git a/.idea/misc.xml b/.idea/misc.xml new file mode 100644 index 0000000..d557a56 --- /dev/null +++ b/.idea/misc.xml @@ -0,0 +1,4 @@ + + + + \ No newline at end of file diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..65fc573 --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/thriftCompiler.xml b/.idea/thriftCompiler.xml new file mode 100644 index 0000000..7bc123c --- /dev/null +++ b/.idea/thriftCompiler.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.idea/workspace.xml b/.idea/workspace.xml new file mode 100644 index 0000000..64f2a86 --- /dev/null +++ b/.idea/workspace.xml @@ -0,0 +1,367 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + true + DEFINITION_ORDER + + + + + + + + + + + + + + + + Android Lint + + + Gradle + + + Maven + + + OSGi + + + Probable bugsGradle + + + + + Android + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 1511193118859 - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - scala-sdk-2.10.4 - - - - - - - - 1.8 - - - - - - - - 1.8 - - - - - - - - - - - - - - - \ No newline at end of file From 2718e4326abf8702a6cb4a9742b8b839bcb37825 Mon Sep 17 00:00:00 2001 From: Andreas Kull Date: Sat, 25 Nov 2017 11:26:34 +0100 Subject: [PATCH 3/3] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c75c1bc..e588e69 100644 --- a/README.md +++ b/README.md @@ -599,7 +599,7 @@ A curated list of awesome Java frameworks, libraries and software. *Libraries for building network servers.* * [Comsat](https://github.com/puniverse/comsat) - Integrates standard Java web-related APIs with Quasar fibers and actors. -* [Dubbo](https://github.com/alibaba/dubbo) - High-performance, java based, open source RPC framework. +* [Dubbo](https://github.com/alibaba/dubbo) - High-performance RPC framework. * [Finagle](https://github.com/twitter/finagle) - Extensible RPC system for constructing high-concurrency servers. It implements uniform client and server APIs for several protocols, and is protocol-agnostic to simplify implementation of new protocols. * [Grizzly](https://javaee.github.io/grizzly) - NIO framework. Used as a network layer in Glassfish. * [gRPC](https://github.com/grpc/grpc-java) - RPC framework based on protobuf and HTTP/2.