Error creating bean with name ‘configurationPropertiesBeans‘ defined in org.springframework.cloud.au

Error creating bean with name ‘configurationPropertiesBeans’ defined in org.springframework.cloud.autoconfigure

当启动springboot项目时,会报错
在这里插入图片描述

那是因为springboot项目不支持.yml或者.properties配置文件,需要和springcloud组件一起使用才可以,加入spring-cloud-context依赖才可以

<dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-context</artifactId>
            <version>3.0.1</version>
</dependency>

Guess you like

Origin blog.csdn.net/weixin_43955122/article/details/115983261
Recommended