|
Yes, Tomcat is a servlet container. It handles servlets and Java server pages. Servlets are kind of like CGI scripts, but better (or so the Java people claim) because they always stay resident within the Java Virtual machine, whereas CGI scripts are completed reloaded (the WWW server forks and execs them) each time they are called. Therefore you can maintain persisten state and do other such tricks. Tomcat's relatively easy to manage, and I've played with it a bit, but if you don't know a little bit of Java, it might be somewhat of a slog.
|