On Tue, Apr 29, 2014 at 12:17 AM, Anuja Deshmukh <[email protected]> wrote:
> I had checker for your suggestion, compiler compliance level is 1.7 > itself. and jdk 1.7 is used. > I my computer there is jdk 1.8 is also installed. bt the environment > setting had been done with jdk 1.7. > Something in your application is getting compiled with your JDK 8 installation. You have to either remove the JDK 8 install, or reconfigure your Eclipse installation/computer so JDK 8 isn't used. Try going into your computer's environment variables and removing any reference to JDK 8. The reason that JDK 8 is the culprit is that your stack trace declares a unsupported major.minor version of 52.0. That version corresponds to JDK 8 (see this wiki page for reference<http://en.wikipedia.org/wiki/Java_class_file#General_layout>, scroll down to this table: http://imgur.com/XSgRoFK ). ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/d/optout.
