Re: book for servlet programming

2005-03-18 Thread Harry Mantheakis
3/ Download a copy of the servlet spec (java.sun.com) and give it a good skim. It's dry -- it's a spec, after all -- but it contains what every servlet developer should know. Sticking to spec-compliant code will make your apps container-agnostic, such that you can use Tomcat, WebLogic, etc

RE: book for servlet programming

2005-03-17 Thread David Short
I highly recommend Java Server Pages 3rd edition, by Hans Bergsten (O'Reilly). It covers servlets, JSP and struts. Many examples and easy to read and understand. I own all three editions. -Original Message- From: brian [mailto:[EMAIL PROTECTED] Sent: Thursday, March 17, 2005 4:25 PM

RE: book for servlet programming

2005-03-17 Thread Mike Jackson
I like the WROX book JSP 2nd Edition. It's not purely a servlet book but it covers just about everything you might want to do. Namely filters, servlets, JSPs, MVC frameworks, XML/XSLT, custom tags and tag libraries, JDBC, and EJB. It's a little old so it doesn't cover some other important

Re: book for servlet programming

2005-03-17 Thread QM
On Thu, Mar 17, 2005 at 04:24:57PM -0800, brian wrote: : Please let me know your experiences about a good book to for : servlet programming. (shall be using Tomcat primarily) 1/ Inside Servlets, by Dustin Callaway. I tried a few other servlet books, but this is the one that really worked for me.