2021-08-15 14:49:13.367 ERROR 7128 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :

 启动 RunApp时 出现错误:如

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.

 这是因为端口8080:冲突

解决方法

打开windows下dos命令窗口 ,输入 netstat -ano|findstr + 端口号 例如

netstat -ano|findstr "8080"   

如果出现 "netstat"不是内部或外部命令,也不是可运行的程序或批处理文件。

则右键我的电脑--属性---高级系统设置--环境变量---找到Path--编辑--新建

C:\WINDOWS\system32

重启dos命令窗口 ,输入 netstat -ano|findstr + 端口号

2021-08-15 14:49:13.367 ERROR 7128 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :_第1张图片

 最后一列为PID,,PID为占用端口的进程号

taskkill -pid 8892 –f --杀死8892进程号

2021-08-15 14:49:13.367 ERROR 7128 --- [ restartedMain] o.s.b.d.LoggingFailureAnalysisReporter :_第2张图片

 重启RunApp

 

你可能感兴趣的:(Spring,java)