1、错误描述
A.SpringBoot启动错误描述
***************************APPLICATION FAILED TO START***************************Description:Web server failed to start. Port 8000 was already in use.Action:Identify and stop the process that's listening on port 8000 or configure this application to listen on another port.
2、解决办法
A.打开CMD命令行窗口
B.输入以下命令查找占用端口的PID
netstat -aon|findstr "8080"
C.使用以下命令Kill此进程
taskkill /f /pid 13884

