java.lang.NoSuchMethodError:javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContex

发布于 2024-10-03 18:05:57 字数 1062 浏览 4 评论 0原文

我有这个代码不起作用。

<jsp:useBean id="abbreviationlist" class="AbbreviationListType"/>
<jsp:setProperty name="abbreviationlist" property="id"/>
            <table>
                <c:forEach items="${abbreviationlist.list}" var="abbreviation">
                </c:forEach>
            </table>

我有 AbbreviationListType 类,其中包含列表的 set 和 get 方法- get singlenature is =

public List<AbbreviationType> getList()

有人可以指出我做错了什么吗? 因为这不起作用,我得到这个堆栈跟踪:

javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContext; java.lang.NoSuchMethodError:javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContex; 在 javax.servlet.jsp.jstl.core.LoopTagSupport.unExposeVariables(LoopTagSupport.java:620) ......................

这是我的 WEB-INF/lib

“WEB-INF/lib"

和我的 catalina/common/lib catalina/common/lib

i have this code which is not working.

<jsp:useBean id="abbreviationlist" class="AbbreviationListType"/>
<jsp:setProperty name="abbreviationlist" property="id"/>
            <table>
                <c:forEach items="${abbreviationlist.list}" var="abbreviation">
                </c:forEach>
            </table>

and i have the class AbbreviationListType with set and get methods for the list-
get singnature is =

public List<AbbreviationType> getList()

can someone please point out what i am doing wrong ?
cause this doesnt work and i get this stack trace:

javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContext;
java.lang.NoSuchMethodError:javax.servlet.jsp.PageContext.getELContext()Ljavax/el/ELContex;
at javax.servlet.jsp.jstl.core.LoopTagSupport.unExposeVariables(LoopTagSupport.java:620)
.....................

here is my WEB-INF/lib

WEB-INF/lib

and my catalina/common/lib
catalina/common/lib

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

山色无中 2024-10-10 18:05:57

你的某些东西版本错误。从 lib 文件夹中删除所有 el-apijsp-apijstl* jar。它们随您的 servlet 容器一起提供

You have the wrong version of something. Remove all el-api, jsp-api and the jstl* jars from your lib folder. They are shipped with your servlet container

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文