Saturday, December 2, 2017

java.util.concurrent.ExecutionException: org.apache.catalina.LifecycleException: Failed to start component [StandardEngine[Catalina].StandardHost

  1. You can forcely update your maven
mvn clean install -U
  1. If this procedure fails, then try to it with hard way
find ~/.m2/ -name "*.lastUpdated" | xargs rm
  1. If this procedure also fails, Then try to purge the local repo using the following:
mvn dependency:purge-local-repository
Then make clean and install by this command:
mvn dependency:purge-local-repository clean install
For better, you can follow the links
  1. How do I remove a cached local artifact that maven fetched?
  2. Force maven update

No comments:

Post a Comment