SpringCloud——订单服务注册进zookeeper

SpringCloud——订单服务注册进zookeeper

  • 建module
  • 改pom
  • 写yml
  • 主启动
  • 业务类
  • 测试

为了方便查看,大家可以点击浅蓝色的目录进行跳转哦
怕下次找不到了?快快点关注鼓励一下嘛~ (╹▽╹) ~

建module

在这里插入图片描述

改pom

<dependencies>
        <dependency>
            <groupId>org.example</groupId>
            <artifactId>cloud-api-commons</artifactId>
            <version>${project.version}</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-zookeeper-discovery</artifactId>
            <!--先排除自带的zookeeper-->
            <exclusions>
                <exclusion>
                    <groupId>org.apache.zookeeper</groupId>
                    <artifactId>zookeeper</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
        <!--再引入新的centOS7上版本一致的zookeeper-->
        <dependency>
            <groupId>org.apache.zookeeper</groupId>
            <artifactId>zookeeper</artifactId>
            <version>3.6.3</version>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-devtools</artifactId>
            <scope>runtime</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>

写yml

SpringCloud——订单服务注册进zookeeper_第1张图片

主启动

SpringCloud——订单服务注册进zookeeper_第2张图片

业务类

1.config
SpringCloud——订单服务注册进zookeeper_第3张图片
2.controller
SpringCloud——订单服务注册进zookeeper_第4张图片

测试

1.启动8004、80
在这里插入图片描述
2.在centOS7上测试
在这里插入图片描述
3.在浏览器测试
SpringCloud——订单服务注册进zookeeper_第5张图片
SpringCloud——订单服务注册进zookeeper_第6张图片
如果文章内容对您有帮助的话,欢迎点赞加关注哦!比心
在这里插入图片描述

你可能感兴趣的:(spring,cloud,spring,cloud,zookeeper)