当前位置:   article > 正文

springboot启动错误:Unable to start web server; Unable to start embedded Tomcat

unable to start web server

错误:

org.springframework.context.ApplicationContextException: Unable to start web server; nested exception is org.springframework.boot.web.server.WebServerException: Unable to start embedded Tomcat

org.springframework.context.ApplicationContextException:无法启动web服务器;嵌套异常为org.springframework.boot.web.server.WebServer异常:无法启动嵌入式Tomcat

原因:

版本问题

springBootspringCloud依赖

解决:

1、修改pom.xml文件配置

2.3.0 改为 2.1.6

2、ApplicationTests类报错

修改

  1. import org.junit.Test;
  2. import org.junit.runner.RunWith;
  3. import org.springframework.boot.test.context.SpringBootTest;
  4. import org.springframework.test.context.junit4.SpringRunner;
  5. @RunWith(SpringRunner.class)
  6. @SpringBootTest
  7. class ResourceSharingApplicationTests {
  8. @Test
  9. void contextLoads() {
  10. }
  11. }

或删掉 

3、项目名有个红叉叉

右键 -- Maven -- Update Project

 

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/盐析白兔/article/detail/806203
推荐阅读
相关标签
  

闽ICP备14008679号