1. 程式人生 > >Dubbo zookeeper 初探

Dubbo zookeeper 初探

轉:

參考:

Dubbo的簡介 http://doc.okbase.net/congcong68/archive/112508.html

http://blog.csdn.net/congcong68/article/details/41113239

http://www.iteye.com/magazines/103


建議參考資料:

先把zookeeper在本地給安裝好,

這裡的話講述了兩個工程一個工程是提供服務的,一個工程是呼叫服務的,因為dubbo是跟spring進行無縫連線的,故功能配置在spring的配置檔案中,跟spring進行整合開發

1、工程是以maven進行構建的,使用的jar包如下:


2、服務提供者的工程

a、dubbo-demo-api  定義介面

  1. publicinterface IProcessData {  
  2.     public String deal(String data);  
  3. }  
b、dubbo-demo-provider 服務提供者
  1. publicclass ProcessDataImpl implements IProcessData {  
  2.     /*  
  3.      * @see com.xxx.bubbo.provider.IProcessData#deal(java.lang.String) 
  4.      */
  5.     @Override
  6.     public
     String deal(String data) {  
  7.         try {  
  8.             Thread.sleep(1000);  
  9.         } catch (InterruptedException e) {  
  10.             e.printStackTrace();  
  11.         }  
  12.         return"Finished:" + data;  
  13.     }  
  14. }  

c、applicationProvider.xml配置
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  4.     xsi:schemaLocation="http://www.springframework.org/schema/beans    
  5.         http://www.springframework.org/schema/beans/spring-beans.xsd    
  6.         http://code.alibabatech.com/schema/dubbo    
  7.         http://code.alibabatech.com/schema/dubbo/dubbo.xsd    
  8.         ">
  9.     <!-- Application name -->
  10.     <dubbo:applicationname="hello-world-app"/>
  11.     <!-- registry address, used for service to register itself -->
  12.     <dubbo:registryaddress="zookeeper://127.0.0.1:2181"/>
  13.     <!-- expose this service through dubbo protocol, through port 20880 -->
  14.     <!--    
  15.     <dubbo:protocolname="dubbo"port="20880"/>
  16.     <dubbo:protocolname="dubbo"port="9090"server="netty"
  17.         client="netty"codec="dubbo"serialization="hessian2"charset="UTF-8"
  18.         threadpool="fixed"threads="100"queues="0"iothreads="9"buffer="8192"
  19.         accepts="1000"payload="8388608"/>
  20.         -->
  21.     <!-- Service interface   Concurrent Control  -->
  22.     <dubbo:serviceinterface="com.huangjie.dubbo_Service.service.IProcessData"
  23.         ref="demoService"executes="10"/>
  24.     <!-- Default Protocol -->
  25.     <!--   
  26.     <dubbo:protocol server="netty" />   
  27.     -->
  28.     <!-- designate implementation -->
  29.     <beanid="demoService"class="com.huangjie.dubbo_Service.service.impl.ProcessDataImpl"/>
  30. </beans>

d、啟動服務
  1. publicclass DubboProviderMain {    
  2.     publicstaticvoid main(String[] args) throws Exception {    
  3.         ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(    
  4.                 new String[]{"applicationProvider.xml"});    
  5.         context.start();  
  6.         System.out.println("Press any key to exit.");    
  7.         System.in.read();    
  8.     }    
  9. }   

3、服務呼叫者的工程

a、呼叫類

  1. publicclass ConsumerThd implements Runnable {    
  2.     /*   
  3.      * @see java.lang.Runnable#run()  
  4.      */
  5.     @Override
  6.     publicvoid run() {  
  7.         ClassPathXmlApplicationContext context = new ClassPathXmlApplicationContext(    
  8.                 new String[]{"applicationConsumer.xml"});    
  9.         context.start();    
  10.         IProcessData demoService = (IProcessData) context.getBean("demoService"); // get  
  11.                                                                                 // service  
  12.                                                                                 // invocation  
  13.         // proxy  
  14.         String hello = demoService.deal("nihao"); // do invoke!  
  15.         System.out.println(Thread.currentThread().getName() + " "+hello);    
  16.     }    
  17.     publicstaticvoid main(String[] args) {  
  18.         new Thread(new ConsumerThd()).start();  
  19.         /** 
  20.          * 輸出結果: 
  21.          * Thread-0 Finished:nihao 
  22.          */
  23.     }  
  24. }   

b、applicationConsumer.xml配置
  1. <?xmlversion="1.0"encoding="UTF-8"?>
  2. <beansxmlns="http://www.springframework.org/schema/beans"
  3.     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  4.     xsi:schemaLocation="http://www.springframework.org/schema/beans    
  5.         http://www.springframework.org/schema/beans/spring-beans.xsd    
  6.         http://code.alibabatech.com/schema/dubbo    
  7.         http://code.alibabatech.com/schema/dubbo/dubbo.xsd    
  8.         ">
  9.     <!-- consumer application name -->
  10.     <dubbo:applicationname="consumer-of-helloworld-app"/>
  11.     <!-- registry address, used for consumer to discover services -->
  12.     <dubbo:registryaddress="zookeeper://127.0.0.1:2181"/>
  13.     <dubbo:consumertimeout="5000"/>
  14.     <!-- which service to consume? -->
  15.     <dubbo:referenceid="demoService"interface="com.huangjie.dubbo_Service.service.IProcessData"/>
  16. </beans>
4、最後需要把zookeeper的服務給啟動,在zookeeper安裝資料夾下面的bin目錄裡面的zkServer.cmd給點選執行。不要關閉視窗,保持服務執行


這樣整個呼叫就完成了,這樣的好處是隻要遠端提供ip地址及埠號,以及對外呼叫的類,客戶端就可以呼叫,客戶端不必知道服務端的地址之類的

而且服務端可以開多個zookeeper服務,這樣如果其中一個zookeeper 服務死掉了,其他服務還能正常執行