Tutorials

Important git  commands, Learn Git in 30 minutes

  Configuring Git setting global user name and email, these are identification who is working with the project(repository) $ git config –global user.name “My Name” $ git config –global user.email myEmail@example.com   Creating a new repository –git init command initializing git local repository in your computer: $  git init Checking the status –git status $ git status …

Important git  commands, Learn Git in 30 minutes Read More »

How to resolve “The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path” problem in eclipse?

Problem : Or if you “run as server” you can see the error like: “The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path”   Solutions: Method 1: Right Click on your project folder, Choose Property>Project Facets Then select Runtimes and choose your desired server and click Apply>Ok       Method 2: If …

How to resolve “The superclass “javax.servlet.http.HttpServlet” was not found on the Java Build Path” problem in eclipse? Read More »