问题:Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port.
如下图
识别并停止监听端口8080的进程,或将此应用程序配置为监听另一个端口。
大致意思是我们要使用的端口已被占用
解决:
1.WINDOW+R打开cmd
2.继续输入cmd命令 查看占用端口的进程号
netstat -ano | findstr 8080
从图中红圈可以看出 进程为 8456
3.使用cmd命令将此进程终止
taskkill -f -pid 14156
在重新启动idea即可解决。