home

Java.lang.VerifyError: Expecting a stackmap frame at branch target – JDK 7

January 18, 2012 · 1 comment

Right now, when I try to persist an object in Google App Engine, I’m facing the error “Java.lang.VerifyError: Expecting a stackmap frame at branch target“. I’m using JDK 7 and it seems like the problem lies with this JDK.

After googling a bit, I found that there seems to be two solutions to fix this problem.

Solution 1: Change to JDK 6

As simple as is, change your JDK to version 6 and you won’t be bugged by this exception anymore. Well, in my case, I have to use JDK 7. So, moving on to the solution 2.

Solution 2: Configure JVM

Go to Windows -> Preferences -> Installed JREs. Select the default JVM and click edit. Then add this parameter as VM argument “-XX:-UseSplitVerifier” as seen below.

This should solve the issue.

Related Posts

{ 1 comment… read it below or add one }

Christopher Deckers February 7, 2012 at 12:35 AM

Hi,

If I am not mistaken, you are hitting an Eclipse bug:
https://bugs.eclipse.org/bugs/show_bug.cgi?id=362591

A patch exists in the bug report. I have applied the patch on the relevant JAR file of my Eclipse 3.7.1 and so far everything seems to work fine.

Hope this helps,
-Christopher

Reply

Leave a Comment

Previous post:

Next post: