說明
目前網際網路公司,大部分專案都是基於分散式,一個專案被拆分成幾個小專案,這些小專案會分別部署在不同的計算機上面,這個叫做微服務。當一臺計算機的程式需要呼叫另一臺計算機程式碼的時候,就涉及遠端呼叫。此時dubbo就粉末登場了。
搭建工程
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'
}
如圖所示
boolean作為父工程,然後再見三個模組
booleanone作為父模組 booleanteo作為服務者模組 booleanthree作為消費者模組
新增dubbo.xml
然後在每個模組新建com.test包,在包下新建啟動類
@SpringBootApplication
public class BaseApplication extends SpringBootServletInitializer {
}
然後在每個模組的gradle檔案中引入上面的依賴,然後在消費者模組和生產者模組的依賴中加入父模組依賴,如圖
然後在booleantwo的生產者模組的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
">
<!-- 提供方應用資訊,用於計算依賴關係 -->
<dubbo:application name="hello-world-app"/>
<!-- 使用multicast廣播註冊中心暴露服務地址 -->
<dubbo:registry address="zookeeper://localhost:2181"/>
<!-- 用dubbo協議在20880埠暴露服務 -->
<dubbo:protocol name="dubbo" port="20880"/>
<!-- 宣告需要暴露的服務介面 -->
<dubbo:service
interface="com.test1.provider.DemoService"
ref="demoService"
group="hello-world-app"
version="1.0.0"
/>
</beans>
在啟動類中加入註解
@ImportResource({"classpath:dubbo.xml"})
然後在booleantwo的消費者模組的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
">
<!-- 提供方應用資訊,用於計算依賴關係 -->
<dubbo:application name="hello-world-app"/>
<!-- 使用multicast廣播註冊中心暴露服務地址 -->
<dubbo:registry address="zookeeper://localhost:2181"/>
<!-- 生成遠端服務代理,可以和本地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);
}
然後在生產者模組中寫dubbo實現類
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;
}
}
然後在消費者模組中寫dubbo呼叫
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包
開啟zkServer.cmd
啟動資訊
如果啟動有亂碼的話
回到idea軟體 開啟tomcat的設定 找到VM options:,然後輸入
-Dfile.encoding=UTF-8
測試
程式碼地址:
https://github.com/blackdogss/HelloWorld.git