It's not a secret anymore!
The moose likes Web Component Certification (SCWCD/OCPJWCD) and the fly likes Clarify me please Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » Web Component Certification (SCWCD/OCPJWCD)
Reply Bookmark "Clarify me please" Watch "Clarify me please" New topic
Author

Clarify me please

Bal Sharma
Ranch Hand

Joined: Sep 19, 2001
Posts: 273
I am kinda confuse. Servlet and JSP Specification. Are not they same as JAVADOC that describe javax.servlet, javax.servlet.http, javax.servlet.jsp, and javax.servlet.jsp.tagext? I see lot of people are giving link to Tomcat web page for these API. I downloaded but does not come through. If JavaDoc is the specification it is already included in TOmcat4.0 under /webapps/tomcat-docs. If it is not please clarify me, I will appriciate any response. Thanks. BK
Tony Alicea
Desperado
Sheriff

Joined: Jan 30, 2000
Posts: 3219
I checked my Tomcat installation and it doesn't have the JAVADOC for the Servlet 2.3/JSP 1.2 info.
That's to be expected since Sun already has it on their site. And that's the one I have installed on my PC.
And no, the JAVADOC is NOT the same as the specs. Of course they are related; they talk about the same thing using different language and format.


Tony Alicea
Senior Java Web Application Developer, SCPJ2, SCWCD
Bal Sharma
Ranch Hand

Joined: Sep 19, 2001
Posts: 273
Thanks for your response. Still I am not clear. Could you please tell me what does it cover that is under servletapi? I see it in my Tomcat installation as below.
X:\Tomcat4\webapps\tomcat-docs\servletapi
If it is not specification. How to get specification. I down loaded bunch of time from Tomcat site it is not working for me.
Even I tried for PDF format does not come in good shape. BK

Originally posted by Tony Alicea:
And no, the JAVADOC is NOT the same as the specs. Of course they are related; they talk about the same thing using different language and format.

Tim Duncan
Ranch Hand

Joined: Aug 20, 2001
Posts: 150
Originally posted by Bal Sharma:
Thanks for your response. Still I am not clear.

We're talking about two different types of documentation here:
(1) the JavaDoc for the javax.servlet packages, which tell you the methods and their arguments (i.e. the API), and give a brief description of their behaviour. These are HTML-based, and although they aren't packaged up with the Tomcat distribution, they are available for download at the site (and of course from Sun themselves).
(2) the specification documents, which describe in excruciating detail the required behaviour of Servlet and JSP implementations. These are large PDF or Postscript documents (eg: the JSP spec is some 250 pages). If you read these you will understand every possible nuance of JSPs/Servlets.

Where can you get them? Look here for Servlets: http://java.sun.com/products/servlet/download.html
under the section on Specifications, 2.3 - Final release, you'll see both "Specification Download" and "Download Javadoc"
Similarly JSPs (1.2 - Final release) http://java.sun.com/products/jsp/download.html
have both "Specification Download" and "Download Javadoc"


[This message has been edited by Tim Duncan (edited September 26, 2001).]
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Clarify me please
 
Similar Threads
Servlet 2.4 Javadoc API
short-name element in tld
Threads: sleep() !
Regarding Interface design
Question on widening ,boxing