javax.servlet.jsp.PageContext cannot be resolved to a type
一个JSP页面,内容如下:<form action="${pageContext.request.contextPath}/userAction.do"/>
报错:javax.servlet.jsp.PageContext cannot be resolved to a type
解决:把jsp-api.jar加入到classpath中。。像servlet-api.jar一样,一般servlet容器都会自带,所以在发布自己的项目时,不需要带上jsp-api.jar。