Re: Performance .. Jsp compile import wildcards

2003-02-27 Thread Erik Price
Reynir Hübner wrote: But JSPs are compiled, so this is still only a compile-time issue. (Unless I'm mistaken?) Erik Yup, that's true... I'm really just trying to find out how much this can slow down the compile of a jsp page (jspc). I'm guessing "not much" but I am no compiler speciali

Re: Performance .. Jsp compile import wildcards

2003-02-27 Thread Jon Wingfield
http://www.javaworld.com/javaworld/javaqa/2001-04/01-qa-0406-import.html Reynir Hübner wrote: Hi, I'm wondering what kind of performance decrease (if any) it has to use wildcards in jsp import lines. example : <%@ page import="java.util.*" %> .. but not : <%@ page import="java.util.ArrayL

Re: Performance .. Jsp compile import wildcards

2003-02-27 Thread Tim Funk
The only increase is the compile time increase, a one time cost. There is no extra run time cost since compilation takes care of all class reference locations. But importing * is still very very bad. -Tim Reynir Hübner wrote: Hi, I'm wondering what kind of performance decrease (if any) it has

RE: Performance .. Jsp compile import wildcards

2003-02-27 Thread Reynir Hübner
> But JSPs are compiled, so this is still only a compile-time issue. > (Unless I'm mistaken?) > > > > Erik > > Yup, that's true... I'm really just trying to find out how much this can slow down the compile of a jsp page (jspc). I'm guessing "not much" but I am no compiler specialist. M

Re: Performance .. Jsp compile import wildcards

2003-02-27 Thread Erik Price
Reynir Hübner wrote: Hi, I'm wondering what kind of performance decrease (if any) it has to use wildcards in jsp import lines. example : <%@ page import="java.util.*" %> .. but not : <%@ page import="java.util.ArrayList" %> I know in normal java classes using wildcards when importing pac