Spring Boot application in eclipse, the Tomcat connector configured to listen on port XXXX failed to start

前端 未结 17 1527
不知归路
不知归路 2021-01-30 02:12

I\'m developing a REST API using Spring Framework.

First I wasn\'t able to run my application because of the same problem. The port 8080 on my computer is busy. Then I

17条回答
  •  北恋
    北恋 (楼主)
    2021-01-30 03:09

    this issue can be resolved using 2 ways:

    1. Kill application running on 8080
    netstat -ao | find "8080"
    
    Taskkill /PID 1342 /F
    
    1. change spring server port in application.properties file

    server.port=8081

提交回复
热议问题