Skip to content

Commit

Permalink
update README
Browse files Browse the repository at this point in the history
  • Loading branch information
beiwei30 committed Jun 12, 2016
1 parent 2c4dc6c commit d24e001
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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" />
Expand Down

0 comments on commit d24e001

Please sign in to comment.