When editing a JSP I get the line 'Servlet API classes are not on the classpath, some scriplet features are disabled.' Running the code is fine, the JSP is compiled and runs properly. HTML ...
Ok, so what - in slightly more detail - is a Java Servlet? A Java Servlet is a Java class that subclasses from class HttpServlet and usually overrides the doGet (or doPost) method. These methods will ...