org.apache.catalina.LifecycleException: Failed to start component
SEVERE: A child container failed during start
java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost[localhost].StandardContext[/JSFApp]]
at java.util.concurrent.FutureTask.report(Unknown Source)
at java.util.concurrent.FutureTask.get(Unknown Source)
at org.apache.catalina.core.ContainerBase.startInternal(ContainerBase.java:1123)
at org.apache.catalina.core.StandardHost.startInternal(StandardHost.java:800)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1559)
at org.apache.catalina.core.ContainerBase$StartChild.call(ContainerBase.java:1549)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
You are missing commons-digester3-3.2.jar from Apache Commons Digester LINK. If you are using Maven dependies you can add:
<dependency>
<groupId>commons-digester</groupId>
<artifactId>commons-digester</artifactId>
<version>2.1</version>
</dependency>
to your project dependencies.
Get Updates
Subscribe to our e-mail to receive updates.
Related Articles
- Install Hibernate / JBoss plugin in Eclipse IDE
- Building a RESTful API with Spring Boot: A Comprehensive Guide with annotations
- How to Install Lombok in your IDE: Step-by-Step Guide to install Lombok in Mac
- Write a program to find the given number is armstrong or not?
- HTTP Status 406 The resource identified by this request is only capable of generating responses with characteristics not acceptable according to the request "accept" headers.
- BeanFactory not initialized or already closed - call 'refresh' before accessing beans via the ApplicationContext
- Simple Spring MVC Annotation Example Step by Step.
- Spring MVC Example with Multiple Forms and Validations.
- org.apache.catalina.LifecycleException: Failed to start component
- BatchUpdateException: ORA-02291: integrity constraint () violated - parent key not found
- Hibernate Many to Many Example
- How to Generate HBM(Hibernate Mapping) files and POJO (Model) Classes in Eclipse
Subscribe to:
Post Comments (Atom)
0 Responses to “org.apache.catalina.LifecycleException: Failed to start component”
Post a Comment
Thanks for your comments