Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

My problem is, that when the <c:if tag is reached the following problem occurs.

I am using Spring on google app engine.

java.lang.AbstractMethodError: javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContext;
    at javax.servlet.jsp.jstl.core.LoopTagSupport.unExposeVariables(LoopTagSupport.java:620)
    at javax.servlet.jsp.jstl.core.LoopTagSupport.doFinally(LoopTagSupport.java:354)
    at org.apache.jsp.WEB_002dINF.views.templates.master_005fb_jsp._jspx_meth_c_forEach_0(master_005fb_jsp.java:544)
    at org.apache.jsp.WEB_002dINF.views.templates.master_005fb_jsp._jspx_meth_c_if_0(master_005fb_jsp.java:482)
    at org.apache.jsp.WEB_002dINF.views.templates.master_005fb_jsp._jspService(master_005fb_jsp.java:314)
    at org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:806)
    at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
    at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
share|improve this question

3 Answers

The java.lang.AbstractMethodError means that an abstract method as mentioned in the error message which is declared in some (abstract) API in the current runtime classpath is missing in the concrete implementation in the current runtime classpath.

In this case it's the javax.servlet.jsp.PageContext.getELContext() method. As per the javadocs this abstract method was introduced in JSP 2.1. The concrete implementation is the server you're currently using.

This can be caused by having a jsp-api.jar of a different server make/version supporting JSP 2.1 in the runtime classpath of your webapp, most likely in /WEB-INF/lib folder, while the GAE server you're using doesn't implement JSP 2.1. Get rid of all server-specific libraries in the runtime classpath of your webapp. They doesn't belong there. They belongs (and are already) in the server's library.

share|improve this answer

Try using an older version of JSTL. It looks like you're using 1.2 and you should probably be using 1.1.

share|improve this answer

you don“t have to add any jstl library to web-inf/lib directory, just run

share|improve this answer
1  
This is really a comment, not an answer to the question. You can always comment on your own posts, and once you have sufficient reputation you will be able to comment on any post. – Florent Aug 20 '12 at 8:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.