Eclipse Indigo 上的编译错误:javax.servlet.jsp.JspException,javax.servlet.jsp.PageContext 无法解析为类型
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有人建议添加以下依赖项,它对我有用。
Someone suggested to add following dependency and it worked for me.