by cfrost | May 15, 2012 | Java
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...
by cfrost | May 10, 2012 | Java
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...
by cfrost | May 8, 2012 | Web
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...