初次使用-Apollo

SpringBoot项目结合Apollo配置中心

一、准备工作

  1. Idea
  2. Apollo

二、页面操作

  1. 打开Apollo,新建项目
    初次使用-Apollo_第1张图片
    初次使用-Apollo_第2张图片

  2. 添加text,然后代码读取这个值
    初次使用-Apollo_第3张图片

  3. 然后点击发布
    初次使用-Apollo_第4张图片

三、Java操作

  1. 新建SpringBoot项目,添加web启动器,apollo-client
    初次使用-Apollo_第5张图片

  2. 启动类增加Apollo注解
    初次使用-Apollo_第6张图片

  3. yml添加Apollo配置信息
    初次使用-Apollo_第7张图片

    app:
      id: kk
    apollo:
      meta: http://192.168.73.128:8080
      bootstrap:
        enabled: true
        eagerLoad:
          enabled: true
    
  4. 编写HelloController

    package com.weart.web;
    
    import org.springframework.beans.factory.annotation.Value;
    import org.springframework.web.bind.annotation.GetMapping;
    import org.springframework.web.bind.annotation.RestController;
    
    /**
     * @Author kid
     * @Classname HelloController
     * @Description 测试
     * @Date 2020/7/27 17:59
     */
    @RestController
    public class HelloController {
    
        @Value("${text}")
        private String text;
    
        @GetMapping("/hello")
        public String hello() {
            return text;
        }
    }
    
    
  5. 启动项目
    在这里插入图片描述

  6. 访问看效果
    初次使用-Apollo_第8张图片

  7. 修改配置文件,项目不重启 看效果
    初次使用-Apollo_第9张图片
    初次使用-Apollo_第10张图片

四、最后的话

  1. Apollo安装,请参考 从零开始搭建服务配置中心-Apollo
  2. Idea全家桶jihuo(小额费用), +Q:872019874

你可能感兴趣的:(Linux)