Re: Tomcat (javac)compilation arguments

2007-08-28 Thread Brian Munroe
On 8/27/07, Caldarale, Charles R [EMAIL PROTECTED] wrote: I'm really curious about one thing: if the OP has a 64-bit environment, why is he being so stingy with heap space? In the OP, what I found interesting was that the default heap size wasn't enough to start Tomcat? According to SUN,

RE: Tomcat (javac)compilation arguments

2007-08-28 Thread Caldarale, Charles R
From: Brian Munroe [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat (javac)compilation arguments In the OP, what I found interesting was that the default heap size wasn't enough to start Tomcat? According to SUN, the default is around 83 MB for 64-bit JVMs [1]. That's the minimum value

Re: Tomcat (javac)compilation arguments

2007-08-27 Thread Manivannan Palanichamy
oh! Then, let me put my question clear first.. My problem is: I am trying to install java tomcat on a server (redhat linux, 64 bit), which runs on shared memory. I need to limit down java start up memory, by passing arguments like $javac -J -Xmx118m $java -Xmx118m so that the virtual machince

Re: Tomcat (javac)compilation arguments

2007-08-27 Thread Brian Munroe
On 8/27/07, Manivannan Palanichamy [EMAIL PROTECTED] wrote: My problem is: I am trying to install java tomcat on a server (redhat linux, 64 bit), which runs on shared memory. I need to limit down java start up memory, by passing arguments like $javac -J -Xmx118m $java -Xmx118m so that the

Re: Tomcat (javac)compilation arguments

2007-08-27 Thread Christopher Schultz
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Manivannan, Manivannan Palanichamy wrote: My problem is: I am trying to install java tomcat on a server (redhat linux, 64 bit), which runs on shared memory. I need to limit down java start up memory, by passing arguments like $javac -J -Xmx118m

RE: Tomcat (javac)compilation arguments

2007-08-27 Thread Caldarale, Charles R
From: Christopher Schultz [mailto:[EMAIL PROTECTED] Subject: Re: Tomcat (javac)compilation arguments Though I'm not positive, I'm pretty sure that the JSP compiler within Tomcat runs in-process; That's true by default. However, there is a fork parameter that can be set for the JSP servlet

Re: Tomcat (javac)compilation arguments

2007-08-26 Thread Brian Munroe
On 8/25/07, Manivannan Palanichamy [EMAIL PROTECTED] wrote: I need to pass javac (compilation) arguments to tomcat. Just as JAVA_OPTS is there for jvm arguments, is there any env var/ other ways to pass arguments to javac of tomcat? Hum, 'javac of tomcat' - Do you mean the JSP Compiler, or