35

Possible Duplicate:
unsupported major .minor version 51.0

I have eclipse indigo and tomcat 7.0.29. And still no Serlvets can be loaded! I have no other JDK or JRE than the 1.7 one!

  • Compilance level 1.7
  • JAVA_HOME point to JDK 1.7
  • JAVA_JRE point to JRE 1.7
  • build path contains JDK 1.7
  • Java Facet 1.7

..but still Unsupported major.minor version 51.0

0

1 Answer 1

43

What is your output when you do java -version? This will tell you what version the running JVM is.

The Unsupported major.minor version 51.0 error could mean:

  • Your server is running a lower Java version then the one used to compile your Servlet and vice versa

Either way, uninstall all JVM runtimes including JDK and download latest and re-install. That should fix any Unsupported major.minor error as you will have the lastest JRE and JDK (Maybe even newer then the one used to compile the Servlet)

See: http://www.java.com/en/download/manual.jsp (7 Update 25 )

and here: http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform (JDK) 7u25)

for the latest version of the JRE and JDK respectively.

EDIT:

Most likely your code was written in Java7 however maybe it was done using Java7update4 and your system is running Java7update3. Thus they both are effectively the same major version but the minor versions differ. Only the larger minor version is backward compatible with the lower minor version.

Edit 2 : If you have more than one jdk installed on your pc. you should check that Apache Tomcat is using the same one (jre) you are compiling your programs with. If you installed a new jdk after installing apache it normally won't select the new version.

Sign up to request clarification or add additional context in comments.

9 Comments

cdm.exe gives me: java version "1.7.0-ea" javac 1.7.0-ea
THANKS! I re-installed JDK and JRE and exception disappered! How I could look which Java7updateXXX I have?
@user753418 the same way you did before java -version, mine displays: java version "1.7.0_06-ea" this Im using Java7 update 6
but there was "1.7.0-ea" in both case
@user753418 did you uninstall your old JRE and JDK? What OS are you using?
|

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.