0.1什么是Dubbox

Dubbox 是一个分布式服务框架,其前身是阿里巴巴开源项目 Dubbo
被国内电商 及互联网项目中使用,后期阿里巴巴停止了该项目的维护,当当网便在 Dubbo 基础上进行 优化,并继续维护,为了与原有的 Dubbo 区分,故将其命名为 Dubbox
Dubbox 致力于提供高性能和透明化的 RPC 远程服务调用方案,以及 SOA 服务治理 方案。简单的说,dubbox 就是个服务框架,如果没有分布式的需求,其实是不需要用的, 只有在分布式的时候,才有 dubbox 这样的分布式服务框架的需求,并且本质上是个服务 调用的东东,
说白了就是个远程服务调用的分布式框架。

0.1.1调用过程分析

image.png

节点角色说明:
Provider: 暴露服务的服务提供方。
Consumer: 调用远程服务的服务消费方。
Registry: 服务注册与发现的注册中心。
Monitor: 统计服务的调用次调和调用时间的监控中心。
Container: 服务运行容器。
调用关系说明:
0. 服务容器负责启动,加载,运行服务提供者。
1. 服务提供者在启动时,向注册中心注册自己提供的服务。
2. 服务消费者在启动时,向注册中心订阅自己所需的服务。
3. 注册中心返回服务提供者地址列表给消费者,如果有变更,注册中心将基于长连接 推 送变更数据给消费者。
4. 服务消费者,从提供者地址列表中,基于软负载均衡算法,选一台提供者进行调 用,如果调用失败,再选另一台调用。
5. 服务消费者和提供者,在内存中累计调用次数和调用时间,定时每分钟发送一次统 计 数据到监控中心。

0.2什么是zookeeper

使用Dubbo服务框架,官方推荐使用zookeeper注册中心
官方推荐使用 zookeeper 注册中心。注册中心负责服务地址的注册与查找,相当于目录 服务,服务提供者和消费者只在启动时与注册中心交互,注册中心不转发请求,压力较小。
Zookeeper 是 Apacahe Hadoop 的子项目,是一个树型的目录服务,支持变更推送,适 合作为 Dubbox 服务的注册中心,工业强度较高,可用于生产环境。

1.安装zookeeper

1.1将zookeeper上传到服务器

第一步:安装 jdk

https://blog.csdn.net/dhr201499/article/details/81626466

第二步:把 zookeeper 的压缩包

(d:\dubbox\zookeeper-3.4.6.tar.gz)上传到 linux系统。
Alt+P 进入 SFTP ,输入 put d:\zookeeper-3.4.6.tar.gz 上传

第三步:解压缩压缩包

tar -zxvf zookeeper-3.4.6.tar.gz

第四步:进入 zookeeper-3.4.6 目录,创建 data 文件夹。

mkdir data

第五步:进入 conf 目录 ,把 zoo_sample.cfg 改名为 zoo.cfg

cd conf
mv zoo_sample.cfg zoo.cfg

第六步:打开 zoo.cfg , 修改 data 属性:

dataDir=/root/zookeeper-3.4.6/data

1.2 Zookeeper 常用命令

第一步: 进入 bin 目录,启动服务输入命令

./zkServer.sh start

第二部: 关闭服务输入命令

./zkServer.sh stop

第三步: 查看状态

./zkServer.sh status
image.png
image.png

2 入门小 Demo

2.1服务提供者开发

1)创建 Maven 工程(WAR )dubboxdemo-service ,在 pom.xml 中引入依赖

  1. <project xmlns="http://maven.apache.org/POM/4.0.0"
  2. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
  4. http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>cn.moonhu.dubboxdemo</groupId>
  7. <artifactId>dubboxdemo-service</artifactId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. <packaging>war</packaging>
  10. <properties>
  11. <spring.version>4.2.4.RELEASE</spring.version>
  12. </properties>
  13. <dependencies>
  14. <!-- Spring -->
  15. <dependency>
  16. <groupId>org.springframework</groupId>
  17. <artifactId>spring-context</artifactId>
  18. <version>${spring.version}</version>
  19. </dependency>
  20. <dependency>
  21. <groupId>org.springframework</groupId>
  22. <artifactId>spring-beans</artifactId>
  23. <version>${spring.version}</version>
  24. </dependency>
  25. <dependency>
  26. <groupId>org.springframework</groupId>
  27. <artifactId>spring-webmvc</artifactId>
  28. <version>${spring.version}</version>
  29. </dependency>
  30. <dependency>
  31. <groupId>org.springframework</groupId>
  32. <artifactId>spring-jdbc</artifactId>
  33. <version>${spring.version}</version>
  34. </dependency>
  35. <dependency>
  36. <groupId>org.springframework</groupId>
  37. <artifactId>spring-aspects</artifactId>
  38. <version>${spring.version}</version>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework</groupId>
  42. <artifactId>spring-jms</artifactId>
  43. <version>${spring.version}</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework</groupId>
  47. <artifactId>spring-context-support</artifactId>
  48. <version>${spring.version}</version>
  49. </dependency>
  50. <!-- dubbo 相关 -->
  51. <dependency>
  52. <groupId>com.alibaba</groupId>
  53. <artifactId>dubbo</artifactId>
  54. <version>2.8.4</version>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.apache.zookeeper</groupId>
  58. <artifactId>zookeeper</artifactId>
  59. <version>3.4.6</version>
  60. </dependency>
  61. <dependency>
  62. <groupId>com.github.sgroschupf</groupId>
  63. <artifactId>zkclient</artifactId>
  64. <version>0.1</version>
  65. </dependency>
  66. <dependency>
  67. <groupId>javassist</groupId>
  68. <artifactId>javassist</artifactId>
  69. <version>3.11.0.GA</version>
  70. </dependency>
  71. </dependencies>
  72. <build>
  73. <plugins>
  74. <plugin>
  75. <groupId>org.apache.maven.plugins</groupId>
  76. <artifactId>maven-compiler-plugin</artifactId>
  77. <version>2.3.2</version>
  78. <configuration>
  79. <source>1.7</source>
  80. <target>1.7</target>
  81. </configuration>
  82. </plugin>
  83. <plugin>
  84. <groupId>org.apache.tomcat.maven</groupId>
  85. <artifactId>tomcat7-maven-plugin</artifactId>
  86. <configuration>
  87. <!-- 指定端口 -->
  88. <port>8081</port>
  89. <!-- 请求路径 -->
  90. <path>/</path>
  91. </configuration>
  92. </plugin>
  93. </plugins>
  94. </build>
  95. </project>

2)在工程的 webapps 下创建 WEB-INF 文件夹,创建 web.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. version="2.5">
  7. <!-- 加载 spring 容器 -->
  8. <context-param>
  9. <param-name>contextConfigLocation</param-name>
  10. <param-value>classpath:applicationContext*.xml</param-value>
  11. </context-param>
  12. <listener>
  13. <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
  14. </listener>
  15. </web-app>

3)创建业务接口

创建包 cn.moonhu.dubbodemo.service,用于存放业务接口,创建接口

  1. package cn.moonhu.dubbodemo.service;
  2. /**
  3. * 业务接口
  4. * @author Administrator
  5. *
  6. */
  7. public interface UserService {
  8. public String getName();
  9. }

4)创建业务层实现类

创建包 cn.moonhu.dubbodemo.service.impl ,用于存放业务实现类。创建业务实现类:

注意:Service 注解与原来不同,需要引入 com.alibaba 包下的 该主机的功能: 1.将UserServiceImpl的接口暴露给zookeeper服务器 2.将UserServiceImpl注入到spring容器中,可以被spring中的Autowired注入

  1. package cn.moonhu.dubbodemo.service.impl;
  2. import com.alibaba.dubbo.config.annotation.Service;
  3. import cn.moonhu.dubbodemo.service.UserService;
  4. @Service
  5. public class UserServiceImpl implements UserService {
  6. public String getName() {
  7. return "moonhu";
  8. }
  9. }

5编写配置文件

在 src/main/resources 下创建 applicationContext-service.xml ,内容如下
注意:dubbo:annotation 用于扫描@Service 注解
timeout: 服务链接zookeeper超时时间

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:context="http://www.springframework.org/schema/context"
  6. xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  7. xmlns:mvc="http://www.springframework.org/schema/mvc"
  8. xsi:schemaLocation="http://www.springframework.org/schema/beans
  9. http://www.springframework.org/schema/beans/spring-beans.xsd
  10. http://www.springframework.org/schema/mvc
  11. http://www.springframework.org/schema/mvc/spring-mvc.xsd
  12. http://code.alibabatech.com/schema/dubbo
  13. http://code.alibabatech.com/schema/dubbo/dubbo.xsd
  14. http://www.springframework.org/schema/context
  15. http://www.springframework.org/schema/context/spring-context.xsd">
  16. <!-- 引用dubbox服务开始 -->
  17. <!-- 指定自己的端口 -->
  18. <dubbo:protocol name="dubbo" port="20887"/>
  19. <dubbo:application name="dubboxdemo-service"/>
  20. <dubbo:registry address="zookeeper://192.168.25.132:2181" timeout="1111" />
  21. <dubbo:annotation package="cn.moonhu.dubboxdemo.service" />
  22. <!-- 引用dubbox服务结束 -->
  23. </beans>

6)测试运行

tomcat7:run

2.2服务消费者开发

1)创建 Maven 工程(WAR)

dubboxdemo-web ,在 pom.xml 引入依赖 ,同“dubboxdemo-
service”工程。区别就是把 tomcat 插件的运行端口改为 8082 。

2)在 webapps 目录下创建 WEB-INF 目录,并创建 web.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xmlns="http://java.sun.com/xml/ns/javaee"
  4. xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  5. http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd"
  6. version="2.5">
  7. <!-- 解决 post 乱码 -->
  8. <filter>
  9. <filter-name>CharacterEncodingFilter</filter-name> <filter-
  10. class>org.springframework.web.filter.CharacterEncodingFilter</filter-class>
  11. <init-param>
  12. <param-name>encoding</param-name>
  13. <param-value>utf-8</param-value>
  14. </init-param>
  15. <init-param>
  16. <param-name>forceEncoding</param-name>
  17. <param-value>true</param-value>
  18. </init-param>
  19. </filter>
  20. <filter-mapping>
  21. <filter-name>CharacterEncodingFilter</filter-name>
  22. <url-pattern>/*</url-pattern>
  23. </filter-mapping>
  24. <servlet>
  25. <servlet-name>springmvc</servlet-name> <servlet-
  26. class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
  27. <!-- 指定加载的配置文件 ,通过参数 contextConfigLocation 加载-->
  28. <init-param>
  29. <param-name>contextConfigLocation</param-name>
  30. <param-value>classpath:applicationContext-web.xml</param-value>
  31. </init-param>
  32. </servlet>
  33. <servlet-mapping>
  34. <servlet-name>springmvc</servlet-name>
  35. <url-pattern>*.do</url-pattern>
  36. </servlet-mapping>
  37. </web-app>

3)拷贝业务层接口

将“dubboxdemo-service”工程的 cn.moonhu.dubboxdemo.service 包以及下面的接口拷贝至此工程

4)编写 Controller

Reference注解 注入该接口的实现类,当调用该类的方法的时候,返回的是该方法的返回值,并不是在本地执行的方法

  1. package cn.moonhu.dubboxdemo.controller;
  2. import org.springframework.beans.factory.annotation.Autowired;
  3. import org.springframework.stereotype.Controller;
  4. import org.springframework.web.bind.annotation.RequestMapping;
  5. import org.springframework.web.bind.annotation.ResponseBody;
  6. import cn.moonhu.dubbodemo.service.UserService;
  7. @Controller
  8. @RequestMapping("/user")
  9. public class UserController {
  10. @Reference
  11. private UserService userService;
  12. @RequestMapping("/showName")
  13. @ResponseBody
  14. public String showName(){
  15. return userService.getName();
  16. }
  17. }

@RestController注解:
可以替换@Controller和@ResponseBody

  1. //RestController注解源码
  2. // Source code recreated from a .class file by IntelliJ IDEA
  3. // (powered by Fernflower decompiler)
  4. //
  5. package org.springframework.web.bind.annotation;
  6. import java.lang.annotation.Documented;
  7. import java.lang.annotation.ElementType;
  8. import java.lang.annotation.Retention;
  9. import java.lang.annotation.RetentionPolicy;
  10. import java.lang.annotation.Target;
  11. import org.springframework.stereotype.Controller;
  12. @Target({ElementType.TYPE})
  13. @Retention(RetentionPolicy.RUNTIME)
  14. @Documented
  15. @Controller
  16. @ResponseBody
  17. public @interface RestController {
  18. String value() default "";
  19. }

该注解是@Controller和@ResponseBody两个注解的结合体,用时拥有两个注解的功能

5)编写 spring

在 src/main/resources 下创建 applicationContext-web.xml

  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <beans xmlns="http://www.springframework.org/schema/beans"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xmlns:p="http://www.springframework.org/schema/p"
  5. xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"
  6. xmlns:mvc="http://www.springframework.org/schema/mvc"
  7. xsi:schemaLocation="http://www.springframework.org/schema/beans
  8. http://www.springframework.org/schema/beans/spring-beans.xsd
  9. http://www.springframework.org/schema/mvc
  10. http://www.springframework.org/schema/mvc/spring-mvc.xsd
  11. http://code.alibabatech.com/schema/dubbo
  12. http://code.alibabatech.com/schema/dubbo/dubbo.xsd
  13. http://www.springframework.org/schema/context
  14. http://www.springframework.org/schema/context/spring-context.xsd">
  15. <mvc:annotation-driven >
  16. <mvc:message-converters register-defaults="false">
  17. <bean
  18. class="org.springframework.http.converter.StringHttpMessageConverter">
  19. <constructor-arg value="UTF-8" />
  20. </bean>
  21. </mvc:message-converters>
  22. </mvc:annotation-driven>
  23. <!-- 引用 dubbo 服务 -->
  24. <dubbo:application name="dubboxdemo-web" />
  25. <dubbo:registry address="zookeeper://192.168.25.132:2181"/>
  26. <dubbo:annotation package="cn.moonhu.dubboxdemo.controller" />
  27. </beans>

6)测试运行

tomcat7:run
在浏览器输入 http://localhost:8082/user/showName.do,查看浏览器输出结果

3 配置管理中心

我们在开发时,需要知道注册中心都注册了哪些服务,以便我们开发和测试。我们可以通过部署一个管理中心来实现。其实管理中心就是一个 web 应用,部署到 tomcat 即可

3.1管理端安装

1)编译源码,得到 war 包

将此压缩包解压,在命令符下进入 dubbo-admin 目录 ,输入 maven 命令

mvn package -Dmaven.skip.test=true

2)上传war包

进入 target 文件夹,你会看到一个 dubbo-admin-2.8.4.war , 在 linux 服务器上安装
tomcat, 将此 war 包上传到 linux 服务器的 tomcat 的 webapps 下.启动 tomcat 后自动解压

3)修改配置文件

如果你部署在 zookeeper 同一台主机并且端口是默认的 2181,则无需修改任何配置。如果不是在一台主机上或端口被修改,需要修改 WEB-INF 下的 dubbo.properties

dubbo.registry.address=zookeeper://127.0.0.1:2181

修改后重新启动 tomcat

3.2管理端使用

打开浏览器,输入http://192.168.25.128:8080/dubbo-admin/ ,登录用户名和密码均为root
进入首页。 (192.168.25.128:)是我部署的 linux 主机地址
image.png
启动服务提供者工程,即可在服务治理-提供者查看到该服务
image.png

image.png
image.png