SpringBoot 启动失败:Singleton bean creation not allowed while singletons of this factory are in destruct

启动报错:Singleton bean creation not allowed while singletons of this factory are in destruction...

SpringBoot 启动失败:Singleton bean creation not allowed while singletons of this factory are in destruct_第1张图片

SpringBoot项目启动时经常发现端口被占用的错误,此项目使用的8081端口,windows系统

查询端口占用情况:

window+R组合键,调出命令窗口。输入cmd回车

输入命令netstat -ano回车
 
协议    本地地址                 外部地址             状态                   PID
TCP    0.0.0.0:8081           0.0.0.0:0              LISTENING       5176

看到端口被PID:5176的程序占用,此时

1、可用输入指令tasklist|findstr "5176",可看到对应的程序

2、在任务管理器中--详细信息,找到对应的PID程序,结束任务,若提示拒绝访问,可将此程序卸载或项目换端口

SpringBoot 启动失败:Singleton bean creation not allowed while singletons of this factory are in destruct_第2张图片
 

你可能感兴趣的:(SpringBoot)