javax.servlet.jsp.PageContext cannot be resolved to a type

jsp项目中报错:java


javax.servlet.jsp.PageContext cannot be resolved to a typeapi

stack overflow上找的解决方案:jsp

 

You will need to import in your project the JSP APIs, which are not included in servlet-apiide

In my project, the solution isspa

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

 

参考连接:code

https://stackoverflow.com/questions/8669387/javax-servlet-jsp-pagecontext-cannot-be-resolved-to-a-typeblog

相关文章
相关标签/搜索