java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Tomcat].StandardHost[localhost].TomcatEmbeddedContext[]]Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String;
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>
3.1.
0</version>
</dependency>
问题解决!升级springboot2.x后 ,又出现了这个问题,在依赖中有两个同名版本不一致的。
在这里删掉:
转载于:https://www.cnblogs.com/shaozhiqi/p/11535110.html