问题:新建SpringBoot项目,启动时报错
报错信息:No active profile set, falling back to 1 default profile: “default”
原因:pom文件缺少web依赖
解决方法:在pom文件上添加以下依赖
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
所有评论(0)