今天一早开机,就启动了个微信和qq,然后启动idea的时候,报如下错误:

09:27:18.510 [restartedMain] INFO  o.a.c.h.Http11NioProtocol - [log,173] - Starting ProtocolHandler ["http-nio-8080"]
09:27:18.514 [restartedMain] WARN  o.s.b.w.s.c.AnnotationConfigServletWebServerApplicationContext - [refresh,591] - Exception encountered during context initialization - cancelling refresh attempt: org.springframework.context.ApplicationContextException: Failed to start bean 'webServerStartStop'; nested exception is org.springframework.boot.web.server.PortInUseException: Port 8080 is already in use

1、我首先使用如下脚本命令:

netstat -ano|findstr "8080"

没有发现被占用的端口进程。
2、然后我又改了个端口,使用8088端口,还是报这个错误。
最终没找到原因,更新了下程序,重新启动机器就好了。
我怀疑是我的进程重启了,重启的时候还没停完,所以会报端口一直被占用。至于为什么会重启,仍不知道什么原因造成的。