Error :
The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path   <%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>Edit pom.xml to include servlet-api-x.x.jar in your dependencies:
<dependency>
  <groupId>javax.servlet</groupId>
  <artifactId>javax.servlet-api</artifactId>
  <version>3.1.1</version>
  <scope>provided</scope>
</dependency>   
Go to Project->Properties->Target Runtimes . And add your server container eg. : Apache Tomcat
