Eclipse Indigo 上的编译错误:javax.servlet.jsp.JspException,javax.servlet.jsp.PageContext 无法解析为类型

发布于 2024-12-27 01:06:51 字数 336 浏览 0 评论 0原文

我在 eclipse indigo 的 jsp 中添加以下 EL 时遇到以下错误。

<form action="${pageContext.request.contextPath}/user">
...
</form>

但是应用程序运行良好,没有任何编译错误。我仔细检查 servlet-api 2.5 和 jst 1.2 jar 是否位于 Eclipse IDE 的类路径中。

如果我删除 ${pageContext.request.contextPath} 它不会显示任何错误。

谁能帮助我摆脱这个错误?

I am getting following errors while adding following EL in a jsp in eclipse indigo.

<form action="${pageContext.request.contextPath}/user">
...
</form>

However the application runs fine without any compilation error. I double check the servlet-api 2.5 and jst 1.2 jars are in class path in Eclipse IDE.

If I remove ${pageContext.request.contextPath} it doesn't show any errors.

Can anyone one help me to get me out of this errors?

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

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

发布评论

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

评论(1

无可置疑 2025-01-03 01:06:51

有人建议添加以下依赖项,它对我有用。

<dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.0</version>
</dependency>

Someone suggested to add following dependency and it worked for me.

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