Hello,
Is there a way to display jsp pages that are outside the .war? Because normally when you include a page, you must provide a path that is relative to the .war file. The pages are on the local filesystem.
Ideally, I would like the pages to be recompiled if the files are changed; an even better solution would be a way to "invalidate" the compiled pages (maybe from a filter?) and to check for modifications from my class - then I could do it only from time to time - this would increase performance.
--
Cheers,
Adam
-
JSP outside the .war (2 messages)
- Posted by: Adam Warski
- Posted on: June 13 2005 06:07 EDT
Threaded Messages (2)
- JSP outside the .war by Dmitry Namiot on June 13 2005 07:16 EDT
- JSP outside the .war by Adam Warski on June 14 2005 11:47 EDT
-
JSP outside the .war[ Go to top ]
- Posted by: Dmitry Namiot
- Posted on: June 13 2005 07:16 EDT
- in response to Adam Warski
See for example Content or Eval taglib in Coldtags suite:
http://www.servletsuite.com/jsp.htm -
JSP outside the .war[ Go to top ]
- Posted by: Adam Warski
- Posted on: June 14 2005 11:47 EDT
- in response to Dmitry Namiot
Thanks! That's what I was looking for.