Re: JSP page processing time

2004-06-04 Thread alu, artifex
maybe have a look at the sources of the tomcat manager webapplication, i think it has a comparable feature implemented. mfg alu - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: JSP page processing time

2004-06-03 Thread Frank Zammetti
Do you mean how long it takes to compile, or how long it takes to execute the compiled class? If the former, I don't have an answer. If the later though, try this at the top of your page: long l1 = System.currentTimeMillis(); And then this at the end: long l2 = System.currentTimeMillis();