jsp includes in tomcat 4..........

2002-09-06 Thread Raj Mettai
Hi All, I am running tomcat4 on solaris8, when I modify an include in a jsp page (ex: header.inc) the tomcat is not recompiling the page, even after restart the changes are not coming up. If I delete .class files from work folder then tomcat will re-compile the page and the changes are

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Justin Ruthenbeck
Tomcat won't recompile the jsp unless it sees that the jsp has changed... and following includes would be quite a bit of overhead to check every time. If you know precisely which jsp you want to compile, you can touch the file to change the date on the file... this will cause a recompile.

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Tim Funk
Tomcat 4.1 now checks included pages. (or at least one of the 4.1.x releases did - but I think it was temporarily yanked out - and I don't know if the functionality is back in yet or not) As for the force recompile everytime - this would be bad since there is a memory leak pre-1.4.1 JDK when

Re: jsp includes in tomcat 4..........

2002-09-06 Thread Raj Mettai
thanks justin, do you know how to do recursive touch on files in multiple directories, because come includes are being used all across the site...thanks again -Raj [EMAIL PROTECTED] 09/06/02 02:27PM Tomcat won't recompile the jsp unless it sees that the jsp has changed... and following