I am trying to run Tomcat 9 for the first time and it cannot find the class below. I checked all the tomcat*.jar libs and the class does not exist. Where can I find org/apache/tomcat/util/file/ConfigurationSource? I have Tomcat 9 installed out of the box and it doesn't run even from the command like with a "catalina run". Any help would be appreciated.
java.lang.NoClassDefFoundError: org/apache/tomcat/util/file/ConfigurationSource at java.lang.Class.getDeclaredConstructors0(Native Method) at java.lang.Class.privateGetDeclaredConstructors(Unknown Source) at java.lang.Class.getConstructor0(Unknown Source) at java.lang.Class.getConstructor(Unknown Source) at org.apache.catalina.startup.Bootstrap.init(Bootstrap.java:264) at org.apache.catalina.startup.Bootstrap.main(Bootstrap.java:461) Caused by: java.lang.ClassNotFoundException: org.apache.tomcat.util.file.ConfigurationSource at java.net.URLClassLoader.findClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) at java.lang.ClassLoader.loadClass(Unknown Source) ... 6 more Thank you .ed