File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change 2
2
3
3
Dubbo is a distributed, high performance RPC framework which empowers applications with service import/export capabilities.
4
4
5
- It's composed of three key parts:
5
+ It contains three key parts, which include :
6
6
7
- * Remoting: a network communication framework providing sync-over-async and request-response messaging.
8
- * Clustering: a remote procedure call abstraction with load-balancing/failover/clustering capabilities.
9
- * Registry : a service directory framework for service registration and service event publish/subscription
7
+ * ** Remoting** : a network communication framework providing sync-over-async and request-response messaging.
8
+ * ** Clustering** : a remote procedure call abstraction with load-balancing/failover/clustering capabilities.
9
+ * ** Registration ** : a service directory framework for service registration and service event publish/subscription
10
10
11
- For more details, please refer to wiki or [ dubbo.io] ( http://dubbo.io ) .
11
+ For more details, please refer to [ wiki] ( https://github.com/alibaba/dubbo/wiki ) or [ dubbo.io] ( http://dubbo.io ) .
12
12
13
13
## Quick Start
14
14
15
15
16
- Export remote service:
16
+ Export service:
17
17
18
18
``` xml
19
19
<bean id =" barService" class =" com.foo.BarServiceImpl" />
20
20
<dubbo : service interface =" com.foo.BarService" ref =" barService" />
21
21
```
22
22
23
- Refer remote service:
23
+ Refer to service:
24
24
25
25
``` xml
26
26
<dubbo : reference id =" barService" interface =" com.foo.BarService" />
You can’t perform that action at this time.
0 commit comments