错误:
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
版权声明:本文为weixin_43653670原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。