Add a spring.config.import=nacos: property to your configuration. If configuration is not required
作者:mmseoamin日期:2023-12-20
 *   ┏┓   ┏┓+ +
 *  ┏┛┻━━━┛┻┓ + +
 *  ┃       ┃
 *  ┃   ━   ┃ ++ + + +
 *  ████━████ ┃+
 *  ┃       ┃ +
 *  ┃   ┻   ┃
 *  ┃       ┃ + +
 *  ┗━┓   ┏━┛
 *    ┃   ┃
 *    ┃   ┃ + + + +
 *    ┃   ┃
 *    ┃   ┃ +  神兽保佑
 *    ┃   ┃    代码无bug
 *    ┃   ┃  +
 *    ┃    ┗━━━┓ + +
 *    ┃        ┣┓
 *    ┃        ┏┛
 *    ┗┓┓┏━┳┓┏┛ + + + +
 *     ┃┫┫ ┃┫┫
 *     ┗┻┛ ┗┻┛+ + + +

Add a spring.config.import=nacos: property to your configuration. If configuration is not required,第1张

问题描述

产生问题的原因是bootstrap.properties比application.properties的优先级要高

由于bootstrap.properties是系统级的资源配置文件,是用在程序引导执行时更加早期配置信息读取;

而application.properties是用户级的资源配置文件,是用来后续的一些配置所需要的公共参数。

但是在SpringCloud 2020.* 版本把bootstrap禁用了,导致在读取文件的时候读取不到而报错,所以我们只要把bootstrap重新导入进来就会生效了。

解决方法

方式一:添加配置

在yml或properties中添加如下配置

properties中添加
spring.cloud.nacos.config.import-check.enabled=false
yml中添加
spring:
    cloud:
        nacos:
            config:
                import-check:
                    enabled: false
方式二:添加pom
        
        
            org.springframework.cloud
            spring-cloud-starter-bootstrap
            3.1.4
        

希望看到这篇文章的小伙伴都能解决bug