现象
***************************
APPLICATION FAILED TO START
***************************
Description:
Web server failed to start. Port 8080 was already in use.
Action:
Identify and stop the process that's listening on port 8080 or configure this application to listen on another port.
解决方法
# 查找对应端口服务pid,最后面一列就是对应的pid
netstat -ano | findstr "8080"
# 强制停止指定pid服务
taskkill -pid 36328 -f