Error :
The superclass "javax.servlet.http.HttpServlet" was not found on the Java Build Path
Error Location :<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
Solution 1)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>
Solution 2)Go to Project->Properties->Target Runtimes . And add your server container eg. : Apache Tomcat
No comments :
Post a Comment
Your Comment and Question will help to make this blog better...