eclipse中开发Web项目时 遇到Port 8080 required by Tomcat v8.5 Server at localhost is already in use.
首先 win+R 打开cmd
输入 netstat -ano|findstr 8080
注:查看8080端口进程
接下来结束它(12520即为进程号)
taskkill /pid 12520 /f
端口占用解决
eclipse中开发Web项目时 遇到Port 8080 required by Tomcat v8.5 Server at localhost is already in use.
首先 win+R 打开cmd
输入 netstat -ano|findstr 8080
注:查看8080端口进程
接下来结束它(12520即为进程号)
taskkill /pid 12520 /f
端口占用解决