>Is the container just loading the classes or is there some init routine
>running? How can I debug this?
If you have a java.exe command line you can get hold of, use the
-verbose option. You can then monitor classes loading.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.
Marcus Leon - 03 Oct 2005 15:22 GMT
Thanks Roedy! I do see that on the first (and only) request the JVM is
loading a lot of classes. Is there a way I can configure Weblogic to
load these classes at system start up?
The classes are mostly common classes (Jakarta Commons, log4j, etc) and
the tag library I am using (Display Tag Library).
Marcus.
Roedy Green - 03 Oct 2005 18:28 GMT
>Thanks Roedy! I do see that on the first (and only) request the JVM is
>loading a lot of classes. Is there a way I can configure Weblogic to
>load these classes at system start up?
there may be a special BEA command to do it, but if you ran a custom
servlet at startup that simply looked at the serialVersionUID of the
classes of interest or called some trivial static method, that would
load the classes.

Signature
Canadian Mind Products, Roedy Green.
http://mindprod.com Again taking new Java programming contracts.