SpringBoot项目启动时后台没有端口好的信息,打印的日志就几行 启动项目时出现以下信息: 产生原因:pom.xml里面缺少web依赖 解决办法:在pom.xml里面添加web依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 在启动项目:看见以下信息就解决了!