JSPs are basically servlets. Every time you change them, they are
recompiled. So:
1) You have to change a property in the weblogic.properties file in
order the new version to be reloaded. As far as I remember you have to set
this:
weblogic.httpd.initArgs.*.jsp=\
pageCheckSeconds=0,\
... some other properties
pageCheckSeconds - Sets the interval at which WebLogic checks to see if JSP
files have been changed and need recompiling. Dependencies are also checked
and recursively reloaded if changed. If set to 0, pages are checked on every
request. If set to -1, page checking and recompiling is disabled.
2) If you are not using connection pooling than maybe the pages are working
so slow because each one of them has to open a new connection.
Luca
----- Original Message -----
From: Charu Gupta
To: [EMAIL PROTECTED]
Sent: Wednesday, August 22, 2001 4:58 AM
Subject: Fine tuning weblogic performance
Hi all,
I am working on an application comprising weblogic 5.1, oracle 8i.
Its a simple application consisting 2 jsp pages. I am not using connection
pooling. Though the application works fine I am facing 2 problems:-
1) Even if I make some changes to my jsp pages, weblogic server does'nt
refresh them, so I have to save these pages under diff. names and then
execute them. the server serves up an old copy of the pages.
2) Even the simple pages take a lot of time to execute.
Above 2 problems are random, I have tried shutting off and starting the
server again, deleting old files from internet explorer but this is not
helping.
Any tips on what changes should I make to jsp pages or what settings do I
change in weblogic would be very helpful.
Thanks.
Get your FREE download of MSN Explorer at http://explorer.msn.com
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST". Archives:
http://archives.java.sun.com/archives/servlet-interest.html Resources:
http://java.sun.com/products/servlet/external-resources.html LISTSERV Help:
http://www.lsoft.com/manuals/user/user.html
___________________________________________________________________________
To unsubscribe, send email to [EMAIL PROTECTED] and include in the body
of the message "signoff SERVLET-INTEREST".
Archives: http://archives.java.sun.com/archives/servlet-interest.html
Resources: http://java.sun.com/products/servlet/external-resources.html
LISTSERV Help: http://www.lsoft.com/manuals/user/user.html