Reputation: 93
I am not able to run my Maven Project as it show the error as "Server Tomcat v8.5 Server at localhost failed to start." as shown in below diagram
My pom.xml file is :
and my web.xml file is
and my project structure is
i did all the steps for maven projects from the refered site http://crunchify.com/how-to-create-dynamic-web-project-using-maven-in-eclipse/ and i got my maven build as success but not able to run a project as it shows error in console as
SEVERE: The required Server component failed to start so Tomcat is unable to start.
i tried , but still it coming as error.. Kindly help me to rectify this Thank You
Upvotes: 0
Views: 413
Reputation: 19640
I guess you need to increase the Timeout of the Tomcat server, by default it times out after 45 seconds.
The Dependencies are taking time to load [more than 45 sec] and the server is timing out
Upvotes: 1