Nacos系列第三篇- Nacos之Spring Boot Config

Posted 毕来生

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nacos系列第三篇- Nacos之Spring Boot Config相关的知识,希望对你有一定的参考价值。

你的关注意义重大!

微信:878799579

前言

个人比较看好Spring Cloud Alibaba家族。此系列以Nacos为主题,从Spring、Spring boot、Spring Cloud多个方面逐步进行演示,源码解读。目前来看官方文档还有待完善。网络上除了官网外缺少Nacos系列文章。都是零零散散的知识点。如此系列文章哪里写的有不周全,错误之处。欢迎大家指正。谢谢。

第一篇 : 

第二篇 : 【Nacos系列第二篇】-Nacos之Spring Boot Discovery。

因大家在工作中逐步以Spring boot、Spring Cloud为主进行开发。我们接下来会以这两个为核心演示详解。


Nacos架构图

工程结构

上面说了那么多,现在先来看一下我们的Spring boot Nacos config工程结构(Windows下演示)

Spring Boot版本:2.1.2.RELEASE

【Nacos系列第三篇】- Nacos之Spring Boot Config

准备工作

1、启动Nacos(Demo演示环境为Windows下)

2、访问 http://127.0.0.1:8848/nacos/index.html#/configurationManagement?dataId=&group=&appName=&namespace= 进入Nacos配置管理页面

3、点击左侧配置管理->配置列表(右侧有一个加号。添加对应信息),如下图

【Nacos系列第三篇】- Nacos之Spring Boot Config

【Nacos系列第三篇】- Nacos之Spring Boot Config

以上就是我们要做的准备工作啦。


获取ConfigService方法

1、通过@NacosInjected注解获取

 
   
   
 
  1. @NacosInjected

  2. ConfigService configService;

2、通过NacosFactory传入Properties获取

 
   
   
 
  1. ConfigService configService = NacosFactory.createConfigService(properties);

3、通过NacosFactory传入ServerAddr获取

 
   
   
 
  1. ConfigService configService = NacosFactory.createConfigService(serverAddr);

以上方式均是为反射获取,NacosFactory创建ConfigService实际上也是调用 ConfigFactory.createConfigService实现的

 
   
   
 
  1.    /**

  2.     * Create config

  3.     *

  4.     * @param properties

  5.     *            init param

  6.     * @return config

  7.     * @throws NacosException

  8.     *             Exception

  9.     */

  10.    public static ConfigService createConfigService(Properties properties) throws NacosException {

  11.        return ConfigFactory.createConfigService(properties);

  12.    }

附上创建ConfigService源码

 
   
   
 
  1.    /**

  2.     * Create Config

  3.     *

  4.     * @param ServerAddr

  5.     *            serverlist

  6.     * @return Config

  7.     * @throws NacosException

  8.     *             Exception

  9.     */

  10.    public static ConfigService createConfigService(String serverAddr) throws NacosException {

  11.        Properties properties = new Properties();

  12.        properties.put(PropertyKeyConst.SERVER_ADDR, serverAddr);

  13.        try {

  14.            Class<?> driverImplClass = Class.forName("com.alibaba.nacos.client.config.NacosConfigService");

  15.            Constructor constructor = driverImplClass.getConstructor(Properties.class);

  16.            ConfigService vendorImpl = (ConfigService) constructor.newInstance(properties);

  17.            return vendorImpl;

  18.        } catch (Throwable e) {

  19.            throw new NacosException(-400, e.getMessage());

  20.        }

  21.    }

代码演示

附上与普通创建的Spring boot工程不同点(以下演示为通过配置管理代码示例中相同获取方式)

ConfigController(新增)

 
   
   
 
  1. package org.nacos.springboot.controller;


  2. import com.alibaba.nacos.api.NacosFactory;

  3. import com.alibaba.nacos.api.PropertyKeyConst;

  4. import com.alibaba.nacos.api.config.ConfigService;

  5. import com.alibaba.nacos.api.config.listener.Listener;

  6. import com.alibaba.nacos.api.exception.NacosException;

  7. import org.springframework.stereotype.Controller;

  8. import org.springframework.web.bind.annotation.RequestMapping;

  9. import org.springframework.web.bind.annotation.ResponseBody;


  10. import java.util.HashMap;

  11. import java.util.Map;

  12. import java.util.Properties;

  13. import java.util.concurrent.Executor;


  14. /**

  15. * @author bilaisheng

  16. * @wechat: 878799579

  17. * @date 2019/01/15 19:34

  18. * @description  Test Nacos Config

  19. */

  20. @Controller

  21. @RequestMapping("config")

  22. public class ConfigController {


  23.    /**

  24.     * @author : bilaisheng

  25.     * @wechat: 878799579

  26.     * @date : 2019/01/15 19:45

  27.     * @return Map

  28.     * @throws NacosException

  29.     * @throws InterruptedException

  30.     */

  31.    @ResponseBody

  32.    @RequestMapping("/get")

  33.    public Map getConfig() throws NacosException, InterruptedException {

  34.        // 用以演示用,页面返回数据展示

  35.        Map map = new HashMap();

  36.        String serverAddr = "localhost";

  37.        String dataId = "nacos-spring";

  38.        String group = "bilaisheng";

  39.        Properties properties = new Properties();

  40.        properties.put(PropertyKeyConst.SERVER_ADDR, serverAddr);

  41.        // 创建ConfigService,此处通过Properties方式进行创建,另一种演示serviceaddr获取configService.

  42.        // 原理上都是通过 ConfigFactory.createConfigService()去进行创建

  43.        ConfigService configService = NacosFactory.createConfigService(properties);

  44.        // ConfigService configService = NacosFactory.createConfigService(serverAddr);


  45.        String content = configService.getConfig(dataId, group, 5000);

  46.        System.out.println("config : " + content);

  47.        map.put("content", content);

  48.        // 添加Listener,用以演示receive获取数据结果

  49.        configService.addListener(dataId, group, new Listener() {

  50.            @Override

  51.            public void receiveConfigInfo(String configInfo) {

  52.                System.out.println("recieve : " + configInfo);

  53.            }

  54.            @Override

  55.            public Executor getExecutor() {

  56.                return null;

  57.            }

  58.        });


  59.        // 推送config。将原有dataid中信息替换。

  60.        boolean isPublishOk = configService.publishConfig(dataId, group, "publish config content");

  61.        System.out.println("isPublishOk : " + isPublishOk);

  62.        map.put("isPublishOk", isPublishOk);


  63.        Thread.sleep(3000);

  64.        content = configService.getConfig(dataId, group, 5000);

  65.        System.out.println("Thread sleep 3000ms : " + content);

  66.        map.put("Thread sleep 3000ms : ", content);


  67.        // 删除指定dataid , group 配置

  68.        boolean isRemoveOk = configService.removeConfig(dataId, group);

  69.        System.out.println("remove " + dataId + "config is " + isRemoveOk);

  70.        Thread.sleep(3000);


  71.        content = configService.getConfig(dataId, group, 5000);

  72.        System.out.println("content after 5000ms "+content);

  73.        Thread.sleep(3000);

  74.        return map;

  75.    }

  76. }

application.properties

 
   
   
 
  1. nacos.config.server-addr=127.0.0.1:8848

pom.xml

 
   
   
 
  1. <dependency>

  2.    <groupId>org.springframework.boot</groupId>

  3.    <artifactId>spring-boot-starter-web</artifactId>

  4. </dependency>


  5. <dependency>

  6.    <groupId>com.alibaba.boot</groupId>

  7.    <artifactId>nacos-config-spring-boot-starter</artifactId>

  8.    <version>0.2.1</version>

  9. </dependency>

上述内容就是我们在创建好Spring Boot工程结构后增加/调整内容。

演示步骤

1、启动 BilaishengNacosSpringbootConfigApplication

2、调用 http://localhost:8080/config/get,此时控制台出现

【Nacos系列第三篇】- Nacos之Spring Boot Config

页面出现

以上就是我们Spring Boot Config的一个Demo例子


喜欢就关注我吧


以上是关于Nacos系列第三篇- Nacos之Spring Boot Config的主要内容,如果未能解决你的问题,请参考以下文章

微服务Spring Cloud Alibaba之Nacos篇, Nacos 就是注册中心 + 配置中心的组合

第三篇:Nacos 源码搭建

Nacos系列第一篇-Nacos之Spring Discovery

微服务Spring Cloud Alibaba之Sentinel篇,使用熔断器防止雪崩

微服务Spring Cloud Alibaba之Sentinel篇,使用熔断器防止雪崩

Spring Cloud Gateway面试攻略,微服务网关的作用以及案例