恢复维护后第一个版本:2.5.4,主要是解决issues和依赖升级
fix:移除 LruCache 多余的同步块 (#601)

fix:移除 LruCache 多余的同步块
1 file changed
tree: c565d7b543341f1650d3fb15d0e58e28390c508c
  1. codestyle/
  2. dubbo/
  3. dubbo-admin/
  4. dubbo-cluster/
  5. dubbo-common/
  6. dubbo-config/
  7. dubbo-container/
  8. dubbo-demo/
  9. dubbo-filter/
  10. dubbo-maven/
  11. dubbo-monitor/
  12. dubbo-registry/
  13. dubbo-remoting/
  14. dubbo-rpc/
  15. dubbo-simple/
  16. dubbo-test/
  17. hessian-lite/
  18. .gitignore
  19. .travis.yml
  20. LICENSE
  21. NOTICE
  22. pom.xml
  23. README.md
README.md

Build Status Gitter

Dubbo is a distributed, high performance RPC framework which empowers applications with service import/export capabilities.

It contains three key parts, which include:

  • Remoting: a network communication framework providing sync-over-async and request-response messaging.
  • Clustering: a remote procedure call abstraction with load-balancing/failover/clustering capabilities.
  • Registration: a service directory framework for service registration and service event publish/subscription

For more details, please refer to dubbo.io.

Documentation

Quick Start

This guide gets you started with dubbo with a simple working example.

Download the sources(examples)

You’ll need a local copy of the example code to work through this quickstart. Download the demo code from our Github repository (the following command clones the entire repository, but you just need the dubbo-demo for this quickstart and other tutorials):

$ cd ~
$ # Clone the repository to get the source code.
$ git clone https://github.com/alibaba/dubbo.git dubbo
$ git checkout master
$ # or: git checkout -b dubbo-2.4.x

Build & Run

  1. Build the whole sources use the following maven command
$ cd ~/dubbo
$ mvn clean install -Dmaven.test.skip
$ # The demo code for this quickstart all stay in the `dubbo-demo` folder
$ cd ./dubbo-demo
$ ls
  1. Run demo-provider. Start the provider and export service
$ # Navigate to the provider part
$ cd ~/dubbo/dubbo-demo/dubbo-demo-provider/target
$ # unpack
$ tar zxvf dubbo-demo-provider-2.5.4-SNAPSHOT-assembly.tar.gz
$ cd dubbo-demo-provider-2.5.4-SNAPSHOT/bin
$ ls
$ # Start the provider
$ ./start.sh
  1. Run demo-consumer. Start the consumer and consume service provided by the provider above
$ # Navigate to the consumer part
$ cd ~/dubbo/dubbo-demo/dubbo-demo-consumer/target
$ # unpack
$ tar zxvf dubbo-demo-consumer-2.5.4-SNAPSHOT-assembly.tar.gz
$ cd dubbo-demo-consumer-2.5.4-SNAPSHOT/bin
$ ls
$ ./start.sh

For a more detailed tutorial of this demo, click here

Getting Help

  • Community
  • Releases
  • Contributors
  • Q&A