07.SpringBoot项目启动:Failed to start component [Connector[HTTP/1.1-8080]]

解决方法

(1)(推荐使用):在spring boot的配置文件application.properties中重新指定一个端口号(在该配置文件中加入下面一段代码即可)

server.port=8081

(2)将占用该端口的程序释放。我们可以通过在cmd中使用netstat -ano命令查看电脑端口的使用情况,使用netstat -aon|findstr "端口号"命令查看端口对应的PID值,然后通过任务管理器将对应PID的应用程序释放即可。


07.SpringBoot项目启动:Failed to start component [Connector[HTTP/1.1-8080]]_第1张图片
image.png

07.SpringBoot项目启动:Failed to start component [Connector[HTTP/1.1-8080]]_第2张图片
image.png

你可能感兴趣的:(07.SpringBoot项目启动:Failed to start component [Connector[HTTP/1.1-8080]])