Error message: javax.servlet.jsp cannot is resolved to a type
Cause 1:
This error may be the reason why the server comes with a servlet library that is not imported.
Workaround:
Right-click on the project "Properties", go to Targeted runtimes, select a server, such as Tomcat, clicking Apply, may be resolved.
Cause 2:
Servlet packages are only required at compile time and are not required when publishing, avoiding conflicts with servlet packages in Tomcat
Workaround:
Add a dependency to the Servlet-api in Pom.xml.
<dependency> <groupId>javax.servlet</groupId> <artifactid>jsp-api</ artifactid> <version>2.0</version> <scope>provide</scope></ Dependency>
reprint: https: // blog.csdn.net/u014313894/article/details/51895563 https: // blog.csdn.net/jinyuancai/article/details/54708341
Eclipse------appears after importing the project javax.servlet.jsp cannot is resolved to a type