Andreas, Tomcat is the Sun "reference implementation" of a J2EE servlet container. This means that any book on Java Servlets should do justice to Tomcat architecture and operating principles. Many books also go into the configuration of Tomcat as an example of configuring a servlet container, simply because it is free and readers can easily get their hands on a copy to try out what they are reading, very convenient for those that want to learn Tomcat specifically :)
I personally quite like the Wrox Press books, they have a book called "Professional Java Servlets" (http://makeashorterlink.com/?U2E525662). It will explain the intricacies of Servlets, but with little regard for how it fits into the bigger picture. If you are just getting started with servlets and JSP though, you might be better served to focus on JSP, and learn specifics about Tomcat and Servlets as you need to. A component of Tomcat called Jasper basically turns JSPs into servlets by converting the JSP source into source code for a class that extends the Servlet base class, which in turn is compiled with the Java compiler and automatically made available in the Tomcat servlet container. JSP is the simple introduction to servlets, since you don't have to worry about intricacies such as deployment descriptors, web application archives and Java coding right off the bat. As well, most experienced programmers use JSP in their projects as well, so you aren't wasting your time to become a master of JSP early on. If that sounds like something that you are interested in, another Wrox book I like is "Professional JSP, Second Edition" (http://makeashorterlink.com/?D5D523662). It's actually sitting on my desk, right next to my EJB book, and the servlets book is on the shelf, (an indication that the servlets stuff both isn't as important on a daily basis as well...). The first couple of chapters describe the basics of servlets and how they fit into the J2EE model (kind of what you are looking for now), then start getting into how a JSP is "just a servlet", with the rest of the book devoted to techniques for getting the most out of JSP. It's over 1,100 pages, and definitely one of those books I wish that I had purchased much sooner than I actually did. Good luck, feel free to drop a line off-list... -b > -----Original Message----- > From: andreas palsson [mailto:andreas@;muha.net] > Sent: Saturday, November 09, 2002 7:24 PM > To: [EMAIL PROTECTED] > Subject: recommended reading > > > Hi. > > I am very new to the world of Tomcat and servlets/jsp. > An interesting world. > > I would like to know if there is some recommended reading. > Not about the actual configuration, that is not a problem > (yet), but I am looking for something the explains the > concept and philosophy behind Tomcat. > > Anyone have a good pointer? > -- > andreas > > > -- > To unsubscribe, e-mail: > <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> > For additional commands, e-mail: > <mailto:tomcat-user-help@;jakarta.apache.org> > > -- To unsubscribe, e-mail: <mailto:tomcat-user-unsubscribe@;jakarta.apache.org> For additional commands, e-mail: <mailto:tomcat-user-help@;jakarta.apache.org>
