user2715085
user2715085

Reputation: 93

I am Not Able to run my Maven Project

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 :

enter image description here

and my web.xml file is

enter image description here

and my project structure is

Project Structure and Tomcat error

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

Answers (1)

Rahul Singh
Rahul Singh

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

Related Questions