Description: Web server failed to start. Port 8082 was already in use. Action: Identify and stop the process that's listening on port 8082 or configure this application to listen on another port. code example
Example: port already in use spring boot
> netstat -ano | findstr *<port used>*
TCP 0.0.0.0:*<port used>* 0.0.0.0:0 LISTENING *<pid>*
TCP [::]:*<port used>* [::]:0 LISTENING *<pid>*
> taskkill /F /PID *<pid>*
SUCCESS: The process with PID *<pid>* has been terminated.