报错信息如下
Description:
No spring.config.import property has been defined
Spring 官方给出的解决方案如下
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.
这里只尝试了第一种解决方案:
首先,2021.0.5版本的 Spring Cloud 默认不再启用 bootstrap 包,因此应该将配置文件写在 application.yml 中,或手动在 maven 中导入 bootstrap 包
然后,在 application.yml 中,按照以下方式配置文章来源:https://www.toymoban.com/news/detail-513404.html
spring:
application:
name: XXXX
cloud:
nacos:
server-addr: XX.XX.XX.XX:8848
config:
group: XXXX
namespace: XXXX
# SpringCloud 2021版本之后,需要用以下方式导入nacos的配置文件
config:
import: nacos:XXXX.yml
问题解决。文章来源地址https://www.toymoban.com/news/detail-513404.html
到了这里,关于解决 Spring Cloud 2021.0.5 版本,使用 nacos 做配置中心,报 No spring.config.import property has been defined 的问题的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!