我在Eclipse Indigo中的jsp中添加以下EL时遇到了以下错误。
<form action="${pageContext.request.contextPath}/user"> ... </form>
但是,该应用程序运行良好,没有任何编译错误。我再次检查Eclipse IDE中类路径中的servlet-api 2.5和jst 1.2 jar。
如果删除${pageContext.request.contextPath},则不会显示任何错误。
${pageContext.request.contextPath}
谁能帮助我摆脱这一错误?
有人建议添加以下依赖关系,它对我有用。
<dependency> <groupId>javax.servlet</groupId> <artifactId>jsp-api</artifactId> <version>2.0</version> </dependency>