8080 port already taken issue when trying to redeploy project from Spring Tool Suite IDE

前端 未结 22 2581
梦毁少年i
梦毁少年i 2020-12-07 10:49

I have strange thing when I try to modify Spring project inside my Spring Tool Suite. On the first load (deploy) everything is fine, application compiles and runs on localho

22条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-12-07 10:56

    This is a typical startup failure due to the embedded servlet container’s port being in use.

    Your embedded tomcat container failed to start because Port 8080 was already in use.

    Just Identify and stop the process that's listening on port 8080 or configure (in you application.properties file )this application to listen on another port.

提交回复
热议问题