Spring Cloud Alibaba(2)使用nacos作为配置中心 带源码

目录

 

1. nacos作为配置中心

2.项目介绍:

3.源码地址:

4.搭建nacos-config


1. nacos作为配置中心

可以动态的刷新配置属性的值;

2.项目介绍:

nacos-config配置中心,使用nacos0.9.0+spring boot2.x

3.源码地址

https://gitee.com/acelee723/acelee-SpringCloudAlibaba-nacosDemo


4.搭建nacos-config

1)pom添加依赖



    4.0.0
    
        org.springframework.boot
        spring-boot-starter-parent
        2.1.3.RELEASE
         
    
    com.acelee
    nacos-config
    0.0.1-SNAPSHOT
    nacos-config
    Demo project for nacos -config

    
        1.8
    

    
        
            org.springframework.boot
            spring-boot-starter-web
        
        
            com.alibaba.boot
            nacos-config-spring-boot-starter
            0.2.1
        
        
            org.springframework.boot
            spring-boot-starter-test
            test
        
    

    
        
            
                org.springframework.boot
                spring-boot-maven-plugin
            
        
    


 2)application.properties增加属性

server.port=8890

spring.application.name=nacos-config
nacos.config.server-addr=127.0.0.1:8848

3)启动类增加@NacosPropertySource(dataId = "nacos-config", autoRefreshed = true)

  • 加载 dataId 为 nacos-config 的配置源,并开启自动更新:
package com.acelee.config;

import com.alibaba.nacos.spring.context.annotation.config.NacosPropertySource;
import org.springframework.boot.SpringApplication;
import org.springframework.boot.autoconfigure.SpringBootApplication;

@SpringBootApplication
@NacosPropertySource(dataId = "nacos-config", autoRefreshed = true)
public class NacosConfigApplication {

    public static void main(String[] args) {
        SpringApplication.run(NacosConfigApplication.class, args);
    }

}

 4)新增controller包,下面新增ConfigController类

  • 使用Nacos 的 @NacosValue 注解设置属性值,并开启自动刷新。
package com.acelee.config.controller;

import com.alibaba.nacos.api.config.annotation.NacosValue;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RestController;

/**
 * @Auther: Ace Lee
 * @Date: 2019/3/14 19:09
 */
@RestController
public class ConfigController {

    @NacosValue(value = "${nacos.test.property:123}", autoRefreshed = true)
    private String testProperties;

    @GetMapping("/test")
    public String test(){
        return testProperties;
    }
}

 5)启动config工程,访问http://localhost:8890/test返回:123

 6)打开Nacos--“配置管理”--“配置列表”,点击+新建配置,配置完毕后,点击右下角蓝色“发布”按钮。

  • Data Id:保持和启动类的dataId一致。
  • 配置内容:属性名称和测试类里的NacosValue里的value名称一致。=多少随便填写。

Spring Cloud Alibaba(2)使用nacos作为配置中心 带源码_第1张图片

Spring Cloud Alibaba(2)使用nacos作为配置中心 带源码_第2张图片

 

7)再次访问 http://localhost:8890/test返回:456

  • 证明属性nacos.test.property的值由123动态刷新为456



欢迎关注博主博客,后期博主会持续更新spring cloud alibaba 系列文章,敬请期待! 

 

你可能感兴趣的:(微服务,Spring,Cloud,Alibaba)