[Spring Boot]Web server failed to start. Port 8080 was already in use.
오류 내용 *************************** 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. 해결방법 포트를 변경한다. 변경방법은 아래의 방법들 중 한가지를 선택해서 수행하면 된다. 1. 어플리케이션의 속성을 추가한다. server.port=8081 *출처 : https://www.javatp..