91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Dubbo的使用及原理淺析.

發布時間:2020-09-22 17:37:46 來源:網絡 閱讀:233 作者:淺嫣 欄目:開發技術

Dubbo的使用及原理淺析.

Dubbo是什么?

Dubbo是阿里巴巴SOA服務化治理方案的核心框架,每天為2,000+個服務提供3,000,000,000+次訪問量支持,并被廣泛應用于阿里巴巴集團的各成員站點。

Dubbo[]是一個分布式服務框架,致力于提供高性能和透明化的RPC遠程服務調用方案,以及SOA服務治理方案。


其核心部分包含:

  • 遠程通訊: 提供對多種基于長連接的NIO框架抽象封裝,包括多種線程模型,序列化,以及“請求-響應”模式的信息交換方式。

  • 集群容錯: 提供基于接口方法的透明遠程過程調用,包括多協議支持,以及軟負載均衡,失敗容錯,地址路由,動態配置等集群支持。

  • 自動發現: 基于注冊中心目錄服務,使服務消費方能動態的查×××提供方,使地址透明,使服務提供方可以平滑增加或減少機器。

Dubbo能做什么?

  • 透明化的遠程方法調用,就像調用本地方法一樣調用遠程方法,只需簡單配置,沒有任何API侵入。

  • 軟負載均衡及容錯機制,可在內網替代F5等硬件負載均衡器,降低成本,減少單點。

  • 服務自動注冊與發現,不再需要寫死服務提供方地址,注冊中心基于接口名查詢服務提供者的IP地址,并且能夠平滑添加或刪除服務提供者。

Spring集成

Dubbo采用全Spring配置方式,透明化接入應用,對應用沒有任何API侵入,只需用Spring加載Dubbo的配置即可,Dubbo基于Spring的Schema擴展進行加載。

上面簡單介紹了Dubbo的一些概念, 這里再給一張圖來形象的形容下: 
Dubbo的使用及原理淺析.
我們用這張圖來形容 , 那么映射到 項目中:
      當我們在多個Tomcat部署不同的系統時, 例如A系統(TomcatA)想調用B系統(TomcatB)中的服務, 這時Dubbo就有了用武之地. 首先我們需要B系統在注冊中心將自己的Url注冊進去, 然后注冊中心將Url返還給系統A, 那么系統A就可以調用了. 當然了我這里說的只是Dubbo的一種用法, 在這個項目中使用的也是Dubbo的遠程調用功能. (感覺真的和webservice有點像)

下面就步入正題, 看看Dubbo在項目中的使用實例:
1, 在linux下安裝Zookeeper
這個地方就不詳細概述Zookeeper的安裝了, 前面關于Linux的博文已經有講過在Linux下軟件的安裝了, 這里安裝好后直接啟動 Zookeeper.
Dubbo的使用及原理淺析.

2, 使用需求
在這里 當我們有一種需求, 我們需要在后臺(console)去對商品(product)做一些操做, 而這里我們只能夠使用到公共的service方法, 那么怎么調用product中service的實現呢? 
項目結構:
Dubbo的使用及原理淺析.
公共service方法:
TestTbService.java:

Dubbo的使用及原理淺析.

1 package cn.itcast.core.service;2 3 import cn.itcast.core.bean.TestTb;4 5 public interface TestTbService {6     public void insertTestTb(TestTb testTb);7 }

Dubbo的使用及原理淺析.


Dubbo的使用及原理淺析.


product中的service實現類:
TestTbService.java:

Dubbo的使用及原理淺析.

 1 package cn.itcast.core.service; 2  3 import org.springframework.beans.factory.annotation.Autowired; 4 import org.springframework.stereotype.Service; 5 import org.springframework.transaction.annotation.Transactional; 6  7 import cn.itcast.core.bean.TestTb; 8 import cn.itcast.core.dao.TestTbDao; 9 10 @Service("testTbService")11 @Transactional12 public class TestTbServiceImpl implements TestTbService {13 14     @Autowired15     private TestTbDao testTbDao;16     17     //保存18     public void insertTestTb(TestTb testTb){19         testTbDao.insertTestTb(testTb);20     }21 }

Dubbo的使用及原理淺析.

Dubbo的使用及原理淺析.

在console中使用product中的service實現類:
CenterController.java:

Dubbo的使用及原理淺析.

 1 package cn.itcast.core.controller; 2  3 import java.util.Date; 4  5 import org.junit.runners.model.TestTimedOutException; 6 import org.springframework.beans.factory.annotation.Autowired; 7 import org.springframework.stereotype.Controller; 8 import org.springframework.ui.Model; 9 import org.springframework.web.bind.annotation.RequestMapping;10 11 import cn.itcast.core.bean.TestTb;12 import cn.itcast.core.service.TestTbService;13 14 @Controller15 public class CenterController {16     17     @Autowired18     private TestTbService testTbService;19     20     //測試21     @RequestMapping(value = "/test/index.do")22     public void index(Model model){23         24         TestTb testTb = new TestTb();25         testTb.setName("范冰冰");26         testTb.setBirthday(new Date());27         28         testTbService.insertTestTb(testTb);29         30     }31 }

Dubbo的使用及原理淺析.

Dubbo的使用及原理淺析.

 

如果這樣直接調用能夠行的通嗎?  當然是不行的, 在console里面定義的只是service方法, 那么這里是怎么直接調用到了product中的service實現類呢?

當然了, 這里就需要一些配置文件了:
首先是需要在product中注冊服務:
dubbo-provider.xml:

Dubbo的使用及原理淺析.

 1 <beans xmlns="http://www.springframework.org/schema/beans" 2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" 3     xmlns:context="http://www.springframework.org/schema/context" 4     xmlns:aop="http://www.springframework.org/schema/aop"  5     xmlns:tx="http://www.springframework.org/schema/tx" 6     xmlns:task="http://www.springframework.org/schema/task" 7     xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" 8     xsi:schemaLocation="http://www.springframework.org/schema/beans 
 9         http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
10         http://www.springframework.org/schema/mvc 
11         http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
12         http://www.springframework.org/schema/context 
13         http://www.springframework.org/schema/context/spring-context-4.0.xsd 
14         http://www.springframework.org/schema/aop 
15         http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
16         http://www.springframework.org/schema/tx 
17         http://www.springframework.org/schema/tx/spring-tx-4.0.xsd18         http://www.springframework.org/schema/task19            http://www.springframework.org/schema/task/spring-task-4.0.xsd20         http://code.alibabatech.com/schema/dubbo        
21         http://code.alibabatech.com/schema/dubbo/dubbo.xsd">22         23         24         <!-- 整合Dubbo -->25         <!-- 第一步:Dubbo起名稱    計算用此名稱來區分   -->26         <dubbo:application name="babasport-service-product"/>27         <!-- 第二步:中介  注冊中心: zookeeper  redis ... -->28         <!-- <dubbo:registry address="192.168.200.128:2181,192.168.200.129:2181,192.168.200.130:2181" protocol="zookeeper"/> -->29         <dubbo:registry address="192.168.200.128:2181" protocol="zookeeper"/>30         <!-- 第三步:設置dubbo的端口號     192.168.40.88:20880/接口  -->31         <dubbo:protocol name="dubbo" port="20880"/>32         <!-- 第四步:設置服務提供方 提供的接口 -->33         <dubbo:service interface="cn.itcast.core.service.TestTbService" ref="testTbService"/>34         35 </beans>

Dubbo的使用及原理淺析.

Dubbo的使用及原理淺析.

接下來就是在console中使用了:
服務消費方:
dubbo-cusmer.xml:

Dubbo的使用及原理淺析.

 1 <beans xmlns="http://www.springframework.org/schema/beans" 2     xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:mvc="http://www.springframework.org/schema/mvc" 3     xmlns:context="http://www.springframework.org/schema/context" 4     xmlns:aop="http://www.springframework.org/schema/aop"  5     xmlns:tx="http://www.springframework.org/schema/tx" 6     xmlns:task="http://www.springframework.org/schema/task" 7     xmlns:dubbo="http://code.alibabatech.com/schema/dubbo" 8     xsi:schemaLocation="http://www.springframework.org/schema/beans 
 9         http://www.springframework.org/schema/beans/spring-beans-4.0.xsd 
10         http://www.springframework.org/schema/mvc 
11         http://www.springframework.org/schema/mvc/spring-mvc-4.0.xsd 
12         http://www.springframework.org/schema/context 
13         http://www.springframework.org/schema/context/spring-context-4.0.xsd 
14         http://www.springframework.org/schema/aop 
15         http://www.springframework.org/schema/aop/spring-aop-4.0.xsd 
16         http://www.springframework.org/schema/tx 
17         http://www.springframework.org/schema/tx/spring-tx-4.0.xsd18         http://www.springframework.org/schema/task19            http://www.springframework.org/schema/task/spring-task-4.0.xsd20         http://code.alibabatech.com/schema/dubbo        
21         http://code.alibabatech.com/schema/dubbo/dubbo.xsd">22         23         <!-- 整合Dubbo -->24         <!-- 第一步:Dubbo起名稱    計算用此名稱來區分   -->25         <dubbo:application name="babasport-console"/>26         <!-- 第二步:中介  注冊中心    zookeeper  redis ... -->27         <!--<dubbo:registry address="192.168.200.128:2181,192.168.200.129:2181,192.168.200.130:2181" protocol="zookeeper"/> -->28         <dubbo:registry address="192.168.200.128:2181" protocol="zookeeper"/>29         <!-- 第三步:調用服務提供方 提供的接口 -->30         <dubbo:reference interface="cn.itcast.core.service.TestTbService" id="testTbService"/>31         32 </beans>

Dubbo的使用及原理淺析.

Dubbo的使用及原理淺析.

剩下的就是啟動服務了:
注意先啟動服務提供方, 然后再啟動服務消費方.
Dubbo的使用及原理淺析.

 

 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

兴仁县| 新闻| 礼泉县| 敖汉旗| 瓦房店市| 宿迁市| 土默特右旗| 聂荣县| 独山县| 铁力市| 永靖县| 民权县| 饶阳县| 仁怀市| 吉林市| 云阳县| 泰顺县| 儋州市| 西和县| 健康| 上栗县| 阳江市| 巫溪县| 元朗区| 屯门区| 西宁市| 旌德县| 金乡县| 河北省| 曲麻莱县| 娱乐| 旅游| 玛纳斯县| 淳化县| 仙桃市| 九台市| 天峻县| 洪湖市| 通榆县| 纳雍县| 常山县|