springboot启动报No active profile set, falling back to default profiles: default

springboot启动时报如下错误
在这里插入图片描述
检查依赖问题,添加下面两个依赖就可以了

<dependency>

<groupId>org.springframework.boot</groupId>

<artifactId>spring-boot-starter-web</artifactId>

</dependency>
<dependency>

<groupId>org.springframework.cloud</groupId>

<artifactId>spring-cloud-starter-config</artifactId>

</dependency>
发布了12 篇原创文章 · 获赞 1 · 访问量 136

猜你喜欢

转载自blog.csdn.net/u010574271/article/details/104207272