Tomcat 6 jsp compilation

2007-06-12 Thread Manca Davide
Hello,

how can I say to Tomcat 6 to NOT compile jsp into .class files?
This because we have more machines with a Tomcat 6 each one and they should 
read a read-only nfs file system in which we have precompiled .class files.

Thank you.

-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

RE: Tomcat 6 jsp compilation

2007-06-12 Thread Lakshmi Venkataraman
One of the things to do is to ensure that you have app specific web.xml
placed in an
appropriate location.  This web.xml must have servlet and
servlet-mapping defined
for every precompiled jsp file as follows:
servlet
   servlet-nameImageImport/servlet-name
   servlet-classjsp.imageupload/servlet-class
/servlet
servlet-mapping
servlet-nameImageImport/servlet-name
url-pattern/jsp/imageupload.jsp/url-pattern
/servlet-mapping



--Lakshmi
-Original Message-
From: Manca Davide [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, June 12, 2007 8:37 AM
To: Tomcat Users List
Subject: Tomcat 6 jsp compilation

Hello,

how can I say to Tomcat 6 to NOT compile jsp into .class files?
This because we have more machines with a Tomcat 6 each one and they
should read a read-only nfs file system in which we have precompiled
.class files.

Thank you.


-
To start a new topic, e-mail: users@tomcat.apache.org
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]