Reputation: 73
I have get a problem when I create a new web project in the eclipse.
There show 'the superclass "javax.servlet.httpServlet" was not found on the Java Build Path'.
I have find solution on the Internet, but that not work.
The solution is Project Properties-> Java Build Path-> Add Library -> Select "Server Runtime" from the list-> Next->Select "Apache Tomcat"-> Finish.
Is there anybody can give me other solution? Thanks very much.
My OS is macOS,tomcat is 9.0.0.M9,jdk is 1.8.0_101,the eclipse is jee-neon.
Upvotes: 6
Views: 31454
Reputation: 1
I have get a problem when I create a new web project in the eclipse. There show 'the superclass "javax.servlet.httpServlet" was not found on the Java Build Path'. I have find solution on the Internet, but that not work. The solution is Project Properties-> Java Build Path-> Add Library -> Select "Server Runtime" from the list-> Next->Select "Apache Tomcat"-> Finish.
If you work tomcat10 this solution maybe didn't worked for you. My solution is going to instead tomcat10 to tomcat9.And I solve it. https://www.youtube.com/watch?v=jM-eWX102LQ this video can help you.
Upvotes: 0
Reputation: 1285
With using Eclipse:
Version: Oxygen.2 Release (4.7.2)
Build id: 20171218-0600
I solved the Tomcat Server Library import as follows:
Project properties
.Java Build Path
.Libraries
tab, and Add Library
button.Add Library
window, select the Server Runtime
in the list.Next
button, Select the item Apache Tomcat
mentioned with version in the list, and click on Finish
button.Wish it makes smile on your face!
Upvotes: 0
Reputation: 523
I tried above steps and still errors were there in JSP even runtime libraries were configured properly. I'm using java 8 and tomcat 8. So I unchecked "validate jsp fragments" under project properties > validation > jsp syntax.
Upvotes: 0
Reputation: 287
I have solved the problem by doing the following,
Actually i got this error, my scenario was..
I was using the APACHE TOMCAT SERVER VERSION 8.0, but the project i downloaded was using APACHE TOMCAT VERSION 7.0 it seems, so i changed it to version 8.
How was did was:
All the Best
Upvotes: 13