HTTPServlet not found: Add Server Runtime to Eclipse

If you create Java Web Projects, you will often receive: javax.servlet.http.HttpServlet was not found on the Java Build Path. This means that you miss a library with the specified class. The HttpServlet provides an abstract class to create an HTTP servlet for web applications. 1. Resolve the HttpServlet was not found Error The easiest (not recommended method) is adding the desired servlet jar into your class path manually. Copy the required jar file into your library folder in the web application. Right click the library in the project explorer and select Add to Build…

Read More