When I tried to start spring boot application I got the following error
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.
Solution:
I executed following commands for kill 8080 port
>netstat -ano | findstr :
(Replace with the port number you want, but keep the colon)
>taskkill /PID /F
