• 20221116 Dubbo+Zookeeper


    Dubbo+Zookeeper实现分布式布局

    加入Zookeeper

    在服务器端使用docker 下载Zookeeper镜像

    docker pull ovfftd6p.mirror.aliyuncs.com/library/zookeeper

    下载完成后启动Zookeeper

    docker run -name zk01 --restart always -d -p 2181:2181 {IMAGE ID}

    使用 docker ps 查看是否启动成功
    在这里插入图片描述

    Dubbo

    官方文档:http://dubbo.apache.org/
    github:
    https://github.com/apache/dubbo

    https://github.com/apache/dubbo-spring-boot-project

    https://github.com/apache/dubbo-spring-boot-project/blob/0.2.x/README_CN.md

    Dubbo是什么?

    • Dubbo是:
      • 一款分布式服务框架
      • 高性能和透明化的RPC远程服务调用方案
      • SOA服务治理方案
      • Dubbo每天为2千多个服务提供大于30亿次访问量支持,并被广泛应用于阿里巴巴集团的各成员站点以及别的公司的业务中。
        在这里插入图片描述
        在这里插入图片描述

    编写provider代码(简单示例)

    添加依赖

    
       <dependency>
          <groupId>com.alibaba.bootgroupId>
          <artifactId>dubbo-spring-boot-starterartifactId>
          <version>0.2.1.RELEASEversion>
       dependency>
       <dependency>
          <groupId>com.alibabagroupId>
          <artifactId>dubboartifactId>
          <version>2.6.5version>
       dependency>
    
    
       <dependency>
          <groupId>org.apache.curatorgroupId>
          <artifactId>curator-recipesartifactId>
          <version>2.12.0version>
       dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18

    代码

    实体类

    public class User implements Serializable {
        private int id;
        private String name;
        private int age;
    
        @Override
        public String toString() {
            return "User{" +
                    "id=" + id +
                    ", name='" + name + '\'' +
                    ", age=" + age +
                    '}';
        }
    
        public int getId() {
            return id;
        }
    
        public void setId(int id) {
            this.id = id;
        }
    
        public String getName() {
            return name;
        }
    
        public void setName(String name) {
            this.name = name;
        }
    
        public int getAge() {
            return age;
        }
    
        public void setAge(int age) {
            this.age = age;
        }
    }
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39

    服务接口

    public interface UserService {
        public User getUserById(int id);
    }
    
    • 1
    • 2
    • 3

    服务实现类

    @Service
    @com.alibaba.dubbo.config.annotation.Service
    public class UserServiceImpl implements UserService {
        @Override
        public User getUserById(int id) {
            User user = new User();
            user.setId(id);
            user.setAge(20);
            user.setName("zzm");
            return user;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    application.properties

    server.port=8081
    
    spring.application.name=dubbo-provider-user
    
    dubbo.application.name=dubbo-provider-user
    
    dubbo.scan.base-packages=com.etc.service
    
    dubbo.registry.address=zookeeper://192.168.88.128:2181
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    springboot启动类

    @SpringBootApplication
    @EnableDubbo
    public class DemoproviderApplication {
    
        public static void main(String[] args) {
            SpringApplication.run(DemoproviderApplication.class, args);
        }
    
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9

    执行springboot启动类

    编写consumer代码(简单示例)

    加入依赖

    
    <dependency>
       <groupId>com.alibaba.bootgroupId>
       <artifactId>dubbo-spring-boot-starterartifactId>
       <version>0.2.1.RELEASEversion>
    dependency>
    <dependency>
       <groupId>com.alibabagroupId>
       <artifactId>dubboartifactId>
       <version>2.6.5version>
    dependency>
    
    <dependency>
       <groupId>org.apache.curatorgroupId>
       <artifactId>curator-recipesartifactId>
       <version>2.12.0version>
    dependency>
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17

    代码

    实体类和服务接口 与provider一致
    在这里插入图片描述
    ConUserService

    public interface ConUserService {
        public User getUserById(int id);
    }
    
    • 1
    • 2
    • 3

    ConUserServiceImpl

    @Service
    public class ConUserServiceImpl implements ConUserService {
    
        @Reference
        private UserService userService;
    
    
        @Override
        public User getUserById(int id) {
    
            return userService.getUserById(1);
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13

    UserController

    @RestController
    public class UserController {
    
        @Autowired
        private ConUserService service;
    
        @GetMapping("user/{id}")
        public User getById(@PathVariable("id") int id){
            User userById = service.getUserById(id);
            return userById;
        }
    }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12

    application.properties

    server.port=8082
    
    spring.application.name=dubbo-consumer-user
    
    dubbo.application.name=dubbo-consumer-user
    
    dubbo.registry.address=zookeeper://192.168.88.128:2181
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7

    执行springboot启动类

    加入Dubbo管理控制台

    自己封装了一个jar 可以直接使用

    需要修改的地方

    在这里插入图片描述
    在这里插入图片描述
    修改完后打开cmd 使用java -jar jar包

  • 相关阅读:
    高性能MySQL实战(三):性能优化 | 京东物流技术团队
    【Java】反射
    【时间序列】时间序列预测基本方法:移动平均(SMA,EMA,WMA)
    10.3 小任务
    java计算机毕业设计BS用户小票系统源码+数据库+系统+lw文档
    手机和电脑文件互传
    界面控件Telerik UI for WPF - 如何使用RadSpreadsheet记录或评论
    Redis分布式锁
    FreeRTOS_中断配置和临界段
    学习自动化测试该怎么学?
  • 原文地址:https://blog.csdn.net/weixin_51876109/article/details/127885944