SpringBoot项目启动时后台没有端口好的信息,打印的日志就几行 程序员文章站 2024-03-11 20:27:19 ... SpringBoot项目启动时后台没有端口好的信息,打印的日志就几行 启动项目时出现以下信息: 产生原因:pom.xml里面缺少web依赖 解决办法:在pom.xml里面添加web依赖 <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-web</artifactId> </dependency> 在启动项目:看见以下信息就解决了! 相关标签: java spring spring boot maven tomcat 上一篇: FutureWarning: Conversion of the second argument of issubdtype from `float` to `np.floating` 下一篇: spring mvc form表单提交中文后显示乱码 推荐阅读 SpringBoot项目启动时后台没有端口好的信息,打印的日志就几行