Answers for "java.util.concurrent.executionexception: org.apache.catalina.lifecycleexception: failed to start component"

0

java.util.concurrent.executionexception: org.apache.catalina.lifecycleexception: failed to start component

It seems like org/apache/tomcat/util/descriptor/tld/TldParser is missing at runtime. Please add the following dependency to your pom.xml:

<dependency>
    <groupId>org.apache.tomcat</groupId>
    <artifactId>tomcat-util</artifactId>
    <version>9.0.4</version>
</dependency>
Posted by: Guest on April-15-2022

Code answers related to "java.util.concurrent.executionexception: org.apache.catalina.lifecycleexception: failed to start component"

Browse Popular Code Answers by Language