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