Working with Your First Servlet

To be a Servlet, a Java class just has to implement the Servlet interface.  A full implementation would be Tomcat or Websphere.  We are just interested in overwriting that … and that’s possible with an abstract class called Generic Servlet. Servlet knows nothing about...

Beginning Java Core Concepts

How do you start to learn Java or Object Oriented Programming (OOP)?  I had an excellent teacher who cared about doing things the right way and teaching us why things worked the way that they did.  Below are some of my crib notes from my first class with him. EXERCISE...

Servlets and Tomcat

Servlets and Tomcat Servlet – Java technology-based Web component, managed by a container, that generates dynamic content.  Servlets interact with Web clients via a request/response paradigm implemented by the servlet container. To be a Servlet, a Java class...