Spring Boot 中 Nacos 配置中心使用实战

官方参考文档

https://nacos.io/zh-cn/docs/quick-start-spring-boot.html

本人实践

1、新建一个spring boot项目

我的spirngboot版本为2.5.6

2、添加一下依赖

javascript 复制代码
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>

        <dependency>
            <groupId>com.alibaba.boot</groupId>
            <artifactId>nacos-config-spring-boot-starter</artifactId>
            <version>${nacos.version}</version>
        </dependency>

3、添加配置

javascript 复制代码
nacos.config.server-addr=192.168.17.173:8848
nacos.config.context-path=/nacos
nacos.config.username=nacos
nacos.config.password=nacos
nacos.config.data-id=example
nacos.config.auto-refresh=true

4.编写测试代码

javascript 复制代码
@Controller
@RequestMapping("config")
public class ConfigController {

    @NacosValue(value = "${useLocalCache:false}", autoRefreshed = true)
    private boolean useLocalCache;

    @RequestMapping(value = "/get", method = GET)
    @ResponseBody
    public boolean get() {
        return useLocalCache;
    }
}

踩坑记录一:nacos-config-spring-boot-starter版本不对

nacos-config-spring-boot-starter 0.2.8以下, nacos-client 是1.x的版本

nacos-config-spring-boot-starter 0.2.9开始, nacos-client 是2.X的版本

踩坑记录二:namespace配置不对

由于我没有配置namespace,默认的事public,因此我在配置里面加了下面这条配置导致错误

javascript 复制代码
nacos.config.namespace=public

应该使用命名空间ID,此处有很多人踩坑,后来者一定要注意哦。

相关推荐
J不A秃V头A2 分钟前
IntelliJ IDEA中设置激活的profile
java·intellij-idea
DARLING Zero two♡4 分钟前
【优选算法】Pointer-Slice:双指针的算法切片(下)
java·数据结构·c++·算法·leetcode
小池先生15 分钟前
springboot启动不了 因一个spring-boot-starter-web底下的tomcat-embed-core依赖丢失
java·spring boot·后端
CodeClimb19 分钟前
【华为OD-E卷-木板 100分(python、java、c++、js、c)】
java·javascript·c++·python·华为od
odng21 分钟前
IDEA自己常用的几个快捷方式(自己的习惯)
java·ide·intellij-idea
CT随29 分钟前
Redis内存碎片详解
java·开发语言
brrdg_sefg38 分钟前
gitlab代码推送
java
hanbarger1 小时前
mybatis框架——缓存,分页
java·spring·mybatis
cdut_suye1 小时前
Linux工具使用指南:从apt管理、gcc编译到makefile构建与gdb调试
java·linux·运维·服务器·c++·人工智能·python
苹果醋31 小时前
2020重新出发,MySql基础,MySql表数据操作
java·运维·spring boot·mysql·nginx