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

溫馨提示×

溫馨提示×

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

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

springcloud使用dubbo開發rpc服務及調用案例

發布時間:2021-03-05 14:43:50 來源:億速云 閱讀:232 作者:小新 欄目:編程語言

這篇文章主要介紹了springcloud使用dubbo開發rpc服務及調用案例,具有一定借鑒價值,感興趣的朋友可以參考下,希望大家閱讀完這篇文章之后大有收獲,下面讓小編帶著大家一起了解一下。

spring cloud中基于springboot開發的微服務,是基于http的rest接口,也可以開發基于dubbo的rpc接口。

一,創建goodsService模塊

  1, 在創建的goodsService模塊中再創建goodsServiceApi和goodsServiceServer模塊

  2,在oodsServiceApi模塊中定義接口 ,goodsServiceServer用于接口實現

  3,goodsServiceServer模塊中pom文件引入相關依賴

<dependencies>    <dependency>      <groupId>net.biui</groupId>      <artifactId>goods-service-api</artifactId>      <version>1.0-SNAPSHOT</version>    </dependency>    <dependency>      <groupId>com.alibaba.cloud</groupId>      <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>    </dependency>    <dependency>      <groupId>com.alibaba.cloud</groupId>      <artifactId>spring-cloud-starter-dubbo</artifactId>    </dependency>  </dependencies>

4,goodsServiceServer中添加配置

spring: application:  name: goods-service cloud:  nacos:   discovery:    server-addr: 127.0.0.1:8848    namespace: c22e5019-0bee-43b1-b80b-fc0b9d847501dubbo: registry:  address: nacos://127.0.0.1:8848 scan:  base-packages: net.biui.impl protocol:  port: 20881  name: dubbo
5,goodsServiceServer

編寫接口實現

@org.apache.dubbo.config.annotation.Servicepublic class GoodsImpl implements GoodsApi {  public String getGoodsName() {    return "商品一";  }}

6,goodsServiceServer編寫啟動類

@SpringBootApplication@EnableDiscoveryClientpublic class GoodsServiceServerApplication {  public static void main(String[] args) {    SpringApplication.run(GoodsServiceServerApplication.class, args);  }}

啟動后,dubbo服務會自動注冊到nacos服務發現中心

二,創建調用dubbo服務的模塊

  1,new -> module -> 填寫信息 -> finish

  2,添加pom依賴

<dependencies>    <dependency>      <groupId>org.springframework.boot</groupId>      <artifactId>spring-boot-starter-web</artifactId>    </dependency>    <dependency>      <groupId>com.alibaba.cloud</groupId>      <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>    </dependency>    <dependency>      <groupId>com.alibaba.cloud</groupId>      <artifactId>spring-cloud-starter-dubbo</artifactId>    </dependency>    <dependency>      <groupId>net.biui</groupId>      <artifactId>goods-service-api</artifactId>      <version>1.0-SNAPSHOT</version>    </dependency>  </dependencies>

3,添加配置

spring: application:  name: demo-dubbo cloud:  nacos:   discovery:    server-addr: 127.0.0.1:8848    namespace: c22e5019-0bee-43b1-b80b-fc0b9d847501

4,編寫controller調用dubbo服務

@RestController@RequestMapping("/demo")public class demoController {  @org.apache.dubbo.config.annotation.Reference  GoodsApi goodsApi;  @GetMapping("/test")  public String test(){    return "test " + goodsApi.getGoodsName();  }}

5,編寫啟動類

@SpringBootApplication@EnableDiscoveryClientpublic class demoDubboApplication {  public static void main(String[] args) {    SpringApplication.run(demoDubboApplication.class, args);  }}

啟動后,demo-dubbo服務也會自動注冊到nacos(因為nacos.register.enable默認為true,即代表自動注冊,可以只訂閱,不注冊),對應接口返回了dubbo服務返回的信息!

感謝你能夠認真閱讀完這篇文章,希望小編分享的“springcloud使用dubbo開發rpc服務及調用案例”這篇文章對大家有幫助,同時也希望大家多多支持億速云,關注億速云行業資訊頻道,更多相關知識等著你來學習!

向AI問一下細節

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

AI

岳阳县| 天柱县| 伽师县| 宁陕县| 沁水县| 芜湖县| 桦甸市| 柏乡县| 镇远县| 赤城县| 罗甸县| 上犹县| 紫阳县| 丹阳市| 嘉黎县| 崇礼县| 沁阳市| 老河口市| 阜新| 隆化县| 图片| 廊坊市| 青田县| 凤翔县| 汉沽区| 临汾市| 舟山市| 根河市| 奎屯市| 哈巴河县| 禄劝| 九寨沟县| 韩城市| 项城市| 荥阳市| 白山市| 阜宁县| 奇台县| 高州市| 高平市| 枝江市|