update README

This commit is contained in:
Ian Luo 2016-06-12 16:26:30 +08:00
parent 2c4dc6c879
commit d24e001664
1 changed files with 7 additions and 7 deletions

View File

@ -2,25 +2,25 @@
Dubbo is a distributed, high performance RPC framework which empowers applications with service import/export capabilities.
It's composed of three key parts:
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.
* Registry: a service directory framework for service registration and service event publish/subscription
* **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 wiki or [dubbo.io](http://dubbo.io).
For more details, please refer to [wiki](https://github.com/alibaba/dubbo/wiki) or [dubbo.io](http://dubbo.io).
## Quick Start
Export remote service:
Export service:
```xml
<bean id="barService" class="com.foo.BarServiceImpl" />
<dubbo:service interface="com.foo.BarService" ref="barService" />
```
Refer remote service:
Refer to service:
```xml
<dubbo:reference id="barService" interface="com.foo.BarService" />