标签:VID life 文件中 cep container tomcat 包冲突 error child
Caused by: java.lang.NoSuchMethodError: javax.servlet.ServletContext.getVirtualServerName()Ljava/lang/String;
ContainerBase.addChild: start:
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[]]
maven打包时,tomcat jar包的问题
springboot有自带的tomcat包
设置成如下即可:
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-tomcat</artifactId>
<scope>provided</scope>
</dependency>
Tomcat8可以不设置,Tomcat7需要在spring boot pom文件中进行设置。
注意,也要留意jar包冲突问题和 config contina.properties 122行 *.jar 问题
org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].Standard
标签:VID life 文件中 cep container tomcat 包冲突 error child
原文地址:https://www.cnblogs.com/wbqcheng/p/9796997.html