NoClassDefFoundError (Digester) with Tomcat and MyFaces

前端 未结 2 2074
走了就别回头了
走了就别回头了 2021-01-07 11:48

I was using Tomcat with Eclipse nicely. Now I cannot start the server. I get the following exception when trying to start. Things were working great. I\'m not aware of havin

2条回答
  •  我在风中等你
    2021-01-07 11:59

    Caused by: java.lang.ClassNotFoundException: org.apache.commons.digester.Digester
    

    This just tells you that the mentioned class is missing in the runtime classpath. As the package name hints, it's Apache Commons Digester which is available at http://commons.apache.org/digester. If you download the JAR file and drop it in one of the paths covered by the webapp's runtime classpath, such as /WEB-INF/lib, then this problem should disappear.

提交回复
热议问题