IDEA 运行spring boot出现端口占用的问题


Description:

The Tomcat connector configured to listen on port 8080 failed to start. The port may already be in use or the connector may be misconfigured.

Action:

Verify the connector's configuration, identify and stop any process that's listening on port 8080, or configure this application to listen on another port.

解决方法:在application.properties加入

server.port=[端口号]

原文地址:https://www.cnblogs.com/lizhenhong/p/10760527.html