赞
踩
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
原因:
版本问题
springBoot
和springCloud
依赖
1、修改pom.xml文件配置
2.3.0 改为 2.1.6
2、ApplicationTests类报错
修改
- import org.junit.Test;
- import org.junit.runner.RunWith;
- import org.springframework.boot.test.context.SpringBootTest;
- import org.springframework.test.context.junit4.SpringRunner;
-
- @RunWith(SpringRunner.class)
- @SpringBootTest
- class ResourceSharingApplicationTests {
-
- @Test
- void contextLoads() {
- }
-
- }
或删掉
3、项目名有个红叉叉
右键 -- Maven -- Update Project
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。