溫馨提示×

溫馨提示×

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

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

dubbo整合springboot新手入門教程詳解

發(fā)布時間:2020-09-16 12:14:20 來源:腳本之家 閱讀:183 作者:布爾bl 欄目:編程語言

前言

目前互聯(lián)網(wǎng)公司,大部分項目都是基于分布式,一個項目被拆分成幾個小項目,這些小項目會分別部署在不同的計算機(jī)上面,這個叫做微服務(wù)。當(dāng)一臺計算機(jī)的程序需要調(diào)用另一臺計算機(jī)代碼的時候,就涉及遠(yuǎn)程調(diào)用。此時dubbo就粉末登場了。

搭建工程

dubbo整合springboot新手入門教程詳解

dubbo整合springboot新手入門教程詳解

dubbo整合springboot新手入門教程詳解

idea新建工程后,刪除src文件夾,然后在gradle文件中輸入

buildscript {
  repositories {
    maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
    mavenCentral()
  }
  dependencies {
    classpath 'org.springframework.boot:spring-boot-gradle-plugin:1.5.21.RELEASE'
  }
}


plugins {
  id 'java'
}
apply plugin: 'org.springframework.boot'
apply plugin: 'war'
group 'com.demoMuty'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8

repositories {
  maven { url 'http://maven.aliyun.com/nexus/content/groups/public/' }
  mavenCentral()
}

dependencies {
  compile 'org.springframework.boot:spring-boot-starter-mail'
  compile 'org.springframework.boot:spring-boot-starter-thymeleaf'
  compile 'org.springframework.boot:spring-boot-starter-web'
  compile 'org.mybatis.spring.boot:mybatis-spring-boot-starter:1.3.4'
  compile 'com.alibaba.boot:dubbo-spring-boot-starter:0.1.0'
  compile 'com.101tec:zkclient:0.10'
// developmentOnly 'org.springframework.boot:spring-boot-devtools'
  runtime 'mysql:mysql-connector-java'
  compile("com.baomidou:mybatis-plus-boot-starter:3.1.0")
  compile("com.baomidou:mybatis-plus-generator:3.1.1")
  compileOnly 'org.projectlombok:lombok'
  testCompile 'org.springframework.boot:spring-boot-starter-test'
}

如圖所示

dubbo整合springboot新手入門教程詳解

boolean作為父工程,然后再見三個模塊

dubbo整合springboot新手入門教程詳解

booleanone作為父模塊 booleanteo作為服務(wù)者模塊 booleanthree作為消費(fèi)者模塊

添加dubbo.xml

然后在每個模塊新建com.test包,在包下新建啟動類

dubbo整合springboot新手入門教程詳解

@SpringBootApplication
public class BaseApplication extends SpringBootServletInitializer {
}

然后在每個模塊的gradle文件中引入上面的依賴,然后在消費(fèi)者模塊和生產(chǎn)者模塊的依賴中加入父模塊依賴,如圖

dubbo整合springboot新手入門教程詳解

然后在booleantwo的生產(chǎn)者模塊的resource資源文件中加入dubbo文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://code.alibabatech.com/schema/dubbo
    http://code.alibabatech.com/schema/dubbo/dubbo.xsd
    ">

  <!-- 提供方應(yīng)用信息,用于計算依賴關(guān)系 -->
  <dubbo:application name="hello-world-app"/>

  <!-- 使用multicast廣播注冊中心暴露服務(wù)地址 -->
  <dubbo:registry address="zookeeper://localhost:2181"/>

  <!-- 用dubbo協(xié)議在20880端口暴露服務(wù) -->
  <dubbo:protocol name="dubbo" port="20880"/>

  <!-- 聲明需要暴露的服務(wù)接口 -->
  <dubbo:service
      interface="com.test1.provider.DemoService"
      ref="demoService"
      group="hello-world-app"
      version="1.0.0"
  />
</beans>

在啟動類中加入注解

@ImportResource({"classpath:dubbo.xml"})

然后在booleantwo的消費(fèi)者模塊的resource資源文件中加入dubbo文件

<?xml version="1.0" encoding="UTF-8"?>
<beans xmlns="http://www.springframework.org/schema/beans"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
    xsi:schemaLocation="http://www.springframework.org/schema/beans
    http://www.springframework.org/schema/beans/spring-beans.xsd
    http://code.alibabatech.com/schema/dubbo
    http://code.alibabatech.com/schema/dubbo/dubbo.xsd
    ">

<!-- 提供方應(yīng)用信息,用于計算依賴關(guān)系 -->
<dubbo:application name="hello-world-app"/>

<!-- 使用multicast廣播注冊中心暴露服務(wù)地址 -->
<dubbo:registry address="zookeeper://localhost:2181"/>

<!-- 生成遠(yuǎn)程服務(wù)代理,可以和本地bean一樣使用demoService -->
<dubbo:reference
    interface="com.test1.provider.DemoService"
    group="hello-world-app"
    version="1.0.0"
    id="demoService"/>
</beans>

在啟動類中加入注解

@ImportResource({"classpath:dubbo.xml"})

編寫dubbo代碼

在父模塊中寫dubbo接口

package com.test1.provider;
/**
 * @author buer
 * create 2019/7/2 22:13
 * description
 */
public interface DemoService {
  String sayHello(String name);
}

然后在生產(chǎn)者模塊中寫dubbo實現(xiàn)類

package com.test1.dubbo;

import com.test1.provider.DemoService;
import org.springframework.stereotype.Service;

/**
 * @author buer
 * create 2019/7/2 22:14
 * description
 */
@Service("demoService")
public class DemoServiceImpl implements DemoService {
  @Override
  public String sayHello(String name) {
    return "hello,dubbo"+name;
  }
}

然后在消費(fèi)者模塊中寫dubbo調(diào)用

package com.test1.controller;

import com.test1.provider.DemoService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @author boolean
 * Date: 2019/7/2 19:48
 * description:
 */
@RestController
public class he {
  @Autowired
  private DemoService demoService;

  @RequestMapping("/he")
  public String hello(){
    return "he";
  }

  @RequestMapping("/chen")
  public String hello1(){
    return demoService.sayHello("chen");
  }
}

啟動

最后添加war包

dubbo整合springboot新手入門教程詳解

打開zkServer.cmd

dubbo整合springboot新手入門教程詳解

啟動信息

dubbo整合springboot新手入門教程詳解

如果啟動有亂碼的話

回到idea軟件 打開tomcat的設(shè)置 找到VM options:,然后輸入

-Dfile.encoding=UTF-8

測試

dubbo整合springboot新手入門教程詳解

代碼地址:

https://github.com/blackdogss/HelloWorld.git

以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持億速云。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI