问题:springboot启动报错记录:Identify and stop the process that s listening on port 9090 or configure this application to listen on another port.
原因:9090端口被占用
解决方案:
1.打开cmd
2.输入命令,查找使用9090的进程号:
netstat -ano | findstr 9090
3.根据最后面给出的进程号进行结束端口号的使用
taskkill /F /PID 进程号
taskkill /F /PID 19864
4.结果