Eclipse------appears after importing the project javax.servlet.jsp cannot is resolved to a type

Source: Internet
Author: User

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

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.