用cmd解决 spring boot项目启动报错:Web server failed to start. Port 8080 was already in use.

文章目录

    • 方法二:修改spring boot项目所监听的端口

常见报错:

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.

Process finished with exit code 1

这个是有项目监听8080端口,可以将其关闭,可以更改spring boot 项目所监听的端口


## 方法一:关闭监听8080的进程 1. windows + r,输入cmd 回车 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200819112337474.png?x-oss-process=image/watermark,type_ZmFuZ3poZW5naGVpdGk,shadow_10,text_aHR0cHM6Ly9ibG9nLmNzZG4ubmV0L1RVVHNtaWxl,size_16,color_FFFFFF,t_70#pic_center) 2. 输入 netstat -ano|findstr 8080,可能会有很多其他东西,但你只需要记住自己项目所监听端口,对应的pid 9604 即可 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200819112624639.png#pic_center) 3. 输入 taskkill /f /pid 9604 ![在这里插入图片描述](https://img-blog.csdnimg.cn/20200819112743109.png#pic_center) 4. 完成,现在重新启动springboot项目即可

方法二:修改spring boot项目所监听的端口

在application.propertyies文件添加代码

server.port = 8081

即可,若是使用application.yml,则添加代码:

server:
	port = 8081

用cmd解决 spring boot项目启动报错:Web server failed to start. Port 8080 was already in use._第1张图片

你可能感兴趣的:(踩坑排错,springboot,8080端口被占用,cmd,修改端口,关闭进程)