问题描述 上次运行的项目异常退出导致进程未结束,idea会报错:Identify and stop the process that’s listening on port 8080 or configure this application to listen on another port. 解决方案: 1.cmd查杀端口进程 查进程,得到对应pid号 netstat -aon|findstr "8080" 根据pid号杀进程 taskkill /pid {pid} /f 再次启动ok