update README
This commit is contained in:
parent
2c4dc6c879
commit
d24e001664
14
README.md
14
README.md
|
|
@ -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" />
|
||||
|
|
|
|||
Loading…
Reference in New Issue