Reputation: 410
I am getting this error when starting Tomcat with JDK 7_80, but it is working fine with JDK 6_23. Please find the below console prints and help me to solve this issue.
INFO: XML validation disabled Jun 16, 2016 2:24:41 PM org.apache.catalina.core.StandardContext start SEVERE: Error listenerStart Jun 16, 2016 2:24:41 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/myapplication] startup failed due to previous errors
Thanks in advance.
Upvotes: 1
Views: 3678
Reputation: 4558
Tomcat requires JDK 5 according to Tomcat 5 release note .
Tomcat 5 Release note : http://archive.apache.org/dist/tomcat/tomcat-5/v5.5.27/
So you shouldn't use JDK 7 to start your Tomcat 5. You must use JDK 5 to avoid issues.
I suggest you upgrade your Tomcat to an earlier version if you want to use JDK 7.
Upvotes: 2