以下为报错信息:
No spring.config.import property has been defined
启动时,控制台已经很明确的给出了一个标准的解决方案:
Add a spring.config.import=nacos: property to your configuration.
If configuration is not required add spring.config.import=optional:nacos: instead.
To disable this check, set spring.cloud.nacos.config.import-check.enabled=false.文章来源:https://www.toymoban.com/news/detail-505892.html
经过查阅官方资料,确认从2021.0.5版本起,Spring Cloud将不再默认启用bootstrap 包,所以针对该问题,解决方案有两种:文章来源地址https://www.toymoban.com/news/detail-505892.html
- application.yml中添加以下配置,用以指定引入的配置文件。
spring:
config:
import: nacos:xxxx.yaml
- pom或build.gradle中引入boostrap依赖包:
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-bootstrap</artifactId>
<version>4.0.1</version>
</dependency>
implementation 'org.springframework.cloud:spring-cloud-starter-bootstrap:4.0.1'
到了这里,关于记录一次SpringBoot3+Nacos Config做配置中心时,No spring.config.import property has been defined的问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!