Welcome to [Hexo]
端口占用
在java或者其他服务器语言开发时,经常端口占用,显示下面的错误:
The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in >use or the connector may be misconfigured
springboot 8080端口被占用报错:The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured
cmd打开命令提示符,输入如下命令
netstat -aon|findstr 8080
查询出
再输入
taskkill /f /t /im 9260

成功解决