运行SpringBoot项目,8080端口被占用的解决办法

文章目录

    • 1.问题展示
    • 2.出错原因
    • 3.解决办法

1.问题展示


APPLICATION FAILED TO START

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.

2.出错原因

  • 其他Spring Boot项目占用8080端口;(我这次出错就是此原因)
  • 电脑中其他进程占用8080端口;
  • 多次运行的项目,重复生成占用了端口。

3.解决办法

Spring Boot项目会采用默认的8080端口号
根据报错描述有两种解决办法。
法一:更改项目运行的端口号
通过改项目的配置文件(springboot的配置文件有两种,根据个人喜好修改配置)
在配置文件(application.propertites)添加server.port=8001(此数字非8080即可,随便写)
运行SpringBoot项目,8080端口被占用的解决办法_第1张图片
在配置文件(application.yml)添server.port: 8081(此数字非8080即可,随便写)
注意:后要有空格
在这里插入图片描述

法二:使用cmd结束占用8080端口的进程

  • 输入win+R快捷键,输入cmd,打开命令行窗口
  • 输入以下命令
    netstat -ano|findstr 8080,显示占用8080的进程,可见为7024
    运行SpringBoot项目,8080端口被占用的解决办法_第2张图片
    taskkill /f /t /im 7024,将8080端口的进程全部关闭

运行SpringBoot项目,8080端口被占用的解决办法_第3张图片
解释:相关命令如下:
/t: 杀掉指定进程和由它启动的子进程。
/f: 强制终止指定进程

  • 再次启动类显示正常

运行SpringBoot项目,8080端口被占用的解决办法_第4张图片

你可能感兴趣的:(SpringBoot,运行SpringBoot项目,8080端口被占用的解决办法)