***************************
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.
Process finished with exit code 1
1 在终端中输入netstat -ano|findstr "8080"
我这里的进程号是25096
2 查看进程号对应的进程名称 tasklist|findstr "25096"
记得更换你的进程号!
3 直接结束该进程
taskkill /F /pid 25096
或 taskkill /F /im java.exe
taskkill /F /im java.exe
这个指令把除了11668
的指令外的两个jave.exe也终止了,
所以笔者推荐taskkill /F /pid 11668
这个指令
OK,也是成功解决的这个问题