`
wbj0110
  • 浏览: 1553077 次
  • 性别: Icon_minigender_1
  • 来自: 上海
文章分类
社区版块
存档分类
最新评论
阅读更多

Dubbo Overview:

Serving 1,000+ services with 1,000,000,000+ invocations everyday, Dubbo becomes the key part of Alibaba's SOA solution and has been deployed to the whole alibaba.com family:



So, What is Dubbo?

Dubbo [ ] is a service framework enpowers applications with service import/export capability with high performance RPC.
It's composed of three kernel parts:

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


Dubbo can:

  • Integrate different types of RPC solutions(RMI/Hessian...) with unified behavior by the abstraction layer of RPC
  • Support out-of-box, plug-able load balancing and fault tolerance strategies.
  • Achieve graceful service upgrade/downgrade with service registry.


Dubbo Home:
http://code.alibabatech.com/wiki/display/dubbo/Home
http://weibo.com/dubbo

Dubbo Download:
http://code.alibabatech.com/wiki/display/dubbo/Download

Dubbo Example:
1. Export a remote service:

Xml代码  收藏代码
  1. <bean id="xxxService" class="com.xxx.XxxServiceImpl" />   
  2. <dubbo:service interface="com.xxx.XxxService" ref="xxxService" />  


2. Reference a remote service:

Xml代码  收藏代码
  1. <dubbo:reference id="xxxService" interface="com.xxx.XxxService" />  
  2. <bean id="xxxAction" class="com.xxx.XxxAction">  
  3.     <property name="xxxService" ref="xxxService" />  
  4. </bean>  


Dubbo Performance:
http://code.alibabatech.com/wiki/display/dubbo/Performance+Test+Report



Dubbo Architecture:
http://code.alibabatech.com/wiki/display/dubbo/User+Guide


Dubbo Framework:
http://code.alibabatech.com/wiki/display/dubbo/Developer+Guide

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics