Of course, there are JavaDocs available for JSP in Tomcat: http://jakarta.apache.org/tomcat/tomcat-5.0-doc/jspapi/index.html
That's at least a good starting point -- especially from a Java servlet programmer's perspective. There really isn't a DOM for JSP that I know of. Each of the browsers implement the DOM for HTML slightly differently -- that's the wonderful part about being a web developer! ;) JSP has an object model as outlined in the APIs, but it's not really Document oriented. Does that make sense? Derek --- Glenn Nielsen <[EMAIL PROTECTED]> wrote: > It sounds like you are referring to how the Java source code > for a JSP is generated. This is based on the JSP spec and > the vendors implementation of it. If you are using Tomcat > you might want to ask on the tomcat-user or tomcat-dev > lists if such a thing exists for Jasper which implements > JSP pages in Tomcat. > > If you are interested in writing custom tags the JSP > spec is your best source of information. > > Regards, > > Glenn > > On Sun, Apr 25, 2004 at 04:28:47PM -0400, Steven J. Owens wrote: > > Hi folks, > > > > Can anybody summarize, or point me at a summary of, the JSP > tag lib > > object model, and perhaps the JSP object model? > > > > I'm coming into this from the servlets point of view, so I'm > > extremely familiar with servlets and theoretically what a compiled > > JSPs must look like. However, when I crack open the generated > source > > for a JSP, I see things like JspWriter and such. Is there a > > summary of these anywhere? > > > > I've been reading about custom tag libs and they look > > interesting; again, I'm seeing hints that there's an underlying > object > > model (tags can query for enclosing tags, for example). Is there a > > summary of how this works anywhere? > > > > > > -- > > Steven J. Owens > > [EMAIL PROTECTED] > > > > "I'm going to make broad, sweeping generalizations and strong, > > declarative statements, because otherwise I'll be here all night > and > > this document will be four times longer and much less fun to read. > > Take it all with a grain of salt." - Me at http://darksleep.com > > > > > > > --------------------------------------------------------------------- > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: > [EMAIL PROTECTED] > ---------------------------------------------------------------------- > Glenn Nielsen [EMAIL PROTECTED] | /* Spelin donut madder > | > MOREnet System Programming | * if iz ina coment. > | > Missouri Research and Education Network | */ > | > ---------------------------------------------------------------------- > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > ===== __________________________________ Do you Yahoo!? Yahoo! Photos: High-quality 4x6 digital prints for 25� http://photos.yahoo.com/ph/print_splash --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
