Hi. I want to learn Servlets and JSP. Which are best books for it?
[ SCJP6, SCWCD5 ]
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
1
posted
0
Which ever book you end up with, you should start by downloading and installing the latest version of Tomcat. It comes with the JavaDocs you will need to study and numerous examples. Do NOT install Tomcat as a service, install it as a regular application.
sandeep misal wrote:Hi. I want to learn Servlets and JSP. Which are best books for it?
Head First Servlets & JSP - The one I am also referring to.
Do the exercises, puzzles in the book, really helpful.
sandeep kapse
Greenhorn
Joined: Jun 07, 2007
Posts: 25
posted
0
@William
Sorry William, but I have already installed it as a "service". But why one should not install it as a service?? Your explanation will be really helpful.
sandeep kapse
Greenhorn
Joined: Jun 07, 2007
Posts: 25
posted
0
@ Priti
I am beginner. So will this book be helpful for me to start with? I mean this is certification book.
William Brogden
Author and all-around good cowpoke
Rancher
Joined: Mar 22, 2000
Posts: 12266
1
posted
0
Sorry William, but I have already installed it as a "service". But why one should not install it as a service?? Your explanation will be really helpful.
As you start your servlet programming experimentation you will be wanting to stop and restart Tomcat many times. There will be times when Tomcat mysteriously dies or fails to do what you expect. Clues to problems with starting will be much easier to see if you start Tomcat as an application from a command prompt window.
Sumukh Deshpande wrote:Typically how much time one should require to learn Servlets and JSPs?
That's an unanswerable question. I've been using JSP and Servlets for over 10 years (started with beta JSP 0.92) and I'm still learning things about it.