当我们运行idea,明明没有启动项目,却报出像端口已被占用
springboot启动报错记录:Identify and stop the process that s listening on port 9999 or configure this application to listen on another port.
解决方案:
首先打开cmd ---->最好是用管理员模式
输入命令,查找使用9090的进程号:
netstat -ano | findstr 9999
使该进程终止:
taskkill /F /PID 进程号
重新启动springboot,可以正常启动了