aspose file tools
The moose likes Servlets and the fly likes parsing of jsp.. Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


Win a copy of The Mikado Method this week in the Agile and other Processes forum!
JavaRanch » Java Forums » Java » Servlets
Reply Bookmark "parsing of jsp.." Watch "parsing of jsp.." New topic
Author

parsing of jsp..

Hema Kumar
Greenhorn

Joined: Oct 06, 2000
Posts: 9
Hi all,
I started jsp very recently, and have few basic quistions..
1. When does the jsp page get convert to a servlet ?
2. If it is at the request time, will it be done for each request
or once loaded will remain on the server till next reload ?
3. Once converted to servlet where on server(tomcat 3.1) these class files are stored ?
could any one throw some light on these please..
thank you
Hema
William Brogden
Author and all-around good cowpoke
Rancher

Joined: Mar 22, 2000
Posts: 12271
    
    1
1. The first time the page is requested
2. No, the resulting servlet stays loaded like any other servlet. However, it should get re-compiled and reloaded if the timestamp on the .jsp page changes.
3. Source code .java and .class files with ghastly long names ends up in tomcat/work
Bill
------------------
author of:


Java Resources at www.wbrogden.com
Hema Kumar
Greenhorn

Joined: Oct 06, 2000
Posts: 9
thank you Bill.
 
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to run our stuff on 16 servers instead of 3.
 
subject: parsing of jsp..
 
Similar Threads
send a variable id to a deleteServlet how?
Save a JSP page as Word document
progress shows page loading though page is being loaded
Problem regarding <%@ include file=""%> and a Caching Filter
how to transfer Object or request between jsp??help??