Application failed to start due to an exception

org.springframework.boot.web.embedded.tomcat.ConnectorStartFailedException: Connector configured to listen on port 80 failed to start

Application failed to start due to an exception org.springframework.boot.web.embedded.tomcat.Connec
原因:80端口被占。
解决:结束掉占用端口的程序

1.打开cmd 在CMD中输入命令:netstat -ano(注:以管理员的身份打开cmd)

2.在cmd中找到你启动的端口号,并记住端口号后面的PID
在这里插入图片描述
Application failed to start due to an exception org.springframework.boot.web.embedded.tomcat.Connec
3.照样以管理员身份打开cmd,CMD中输入命令:taskkill /f /t /im 【PID】

在这里插入图片描述
Application failed to start due to an exception org.springframework.boot.web.embedded.tomcat.Connec

相关文章:

  • 2022-03-05
  • 2021-12-13
  • 2021-12-11
  • 2021-07-27
  • 2021-10-07
猜你喜欢
  • 2022-01-13
  • 2021-09-16
  • 2021-10-14
  • 2021-06-19
  • 2021-06-29
  • 2021-12-28
  • 2021-04-23
相关资源
相似解决方案