杀死8080端口进程

netstat -ano | findstr 8080

//寻找8080端口的进程号

taskkill  /pid 11328 -f         

//其中 11328为假设进程号

原文地址:https://www.cnblogs.com/the-wang/p/11246005.html