Jump to content

Talk:JavaServer Pages compiler

Page contents not supported in other languages.
From Wikipedia, the free encyclopedia
This is an old revision of this page, as edited by ZooFari (talk | contribs) at 04:09, 11 November 2009 (Adding WikiProject Java assessment per request (Mistake?) using AWB). The present address (URL) is a permanent link to this revision, which may differ significantly from the current revision.
WikiProject iconJava Redirect‑class
WikiProject iconThis redirect is within the scope of WikiProject Java, a collaborative effort to improve the coverage of Java on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
RedirectThis redirect does not require a rating on Wikipedia's content assessment scale.
WikiProject iconComputing Redirect‑class
WikiProject iconThis redirect is within the scope of WikiProject Computing, a collaborative effort to improve the coverage of computers, computing, and information technology on Wikipedia. If you would like to participate, please visit the project page, where you can join the discussion and see a list of open tasks.
RedirectThis redirect does not require a rating on Wikipedia's content assessment scale.

actually this is a query i din't know where to put a query so i have put it here........

does the jsp compiler, compile a jsp page for every change made...if so how does it detect that a change is made...... for eg: u open a jsp page and view it...go to the real source and make some static changes or even script changes...and then u press refresh, still while the server is running....u can view the changes made!!! so where, when and how does the server know that the change is made and when is it processed????

It looks at the file date. Most JSP containers support configuration for how often the container checks the file timestamp to see if the page has changed. Typically, this timestamp would be set to a short (perhaps seconds) interval for development, and longer (perhaps minutes, or even never) interval for a deployed application. – Doug Bell talkcontrib 06:44, 13 March 2006 (UTC)[reply]