Re: why would this statement "java -server" ???

2011-12-15 Thread Ben Smith-Mannschott
On Fri, Dec 16, 2011 at 05:48, jayvandal wrote: > I was looking at the installation in "Learning clojure" and the batch > file had this statement: > >  java -server -cp .;%CLOJURE_JAR% clojure.main > >     why is  the "server" in the line and what is it ref

why would this statement "java -server" ???

2011-12-15 Thread jayvandal
I was looking at the installation in "Learning clojure" and the batch file had this statement: java -server -cp .;%CLOJURE_JAR% clojure.main why is the "server" in the line and what is it referencing??? Thanks for any help -- You received this message because you a

Re: why would this statement "java -server" ???

2011-12-15 Thread Wilson MacGyver
It means to use the server version of JVM On Dec 15, 2011, at 11:48 PM, jayvandal wrote: > I was looking at the installation in "Learning clojure" and the batch > file had this statement: > > java -server -cp .;%CLOJURE_JAR% clojure.main > > why is the "s

why would this statement "java -server" ???

2011-12-15 Thread jayvandal
I was looking at the installation in "Learning clojure" and the batch file had this statement: java -server -cp .;%CLOJURE_JAR% clojure.main why is the "server" in the line and what is it referencing??? Thanks for any help -- You received this message because you a

Re: java -server

2010-06-03 Thread Paul Moore
On 3 June 2010 21:25, Aaron Cohen wrote: > This error indicates that your "java" executable is coming from the > JRE rather than the JDK. On windows, the JRE only includes the > "client" virtual machine. > > If you have the JDK already installed on your computer, switch your > JAVA_HOME and PATH t

Re: java -server

2010-06-03 Thread Peter Schuller
> I've seen a couple of references in articles about clojure to using > "java -server". My "java" executable has a "server" option, but when I > try it, I get told: >    Error: no `server' JVM at `C:\Program Files\Java\jre6\bin\server\jvm.dll&#x

Re: java -server

2010-06-03 Thread Aaron Cohen
This error indicates that your "java" executable is coming from the JRE rather than the JDK. On windows, the JRE only includes the "client" virtual machine. If you have the JDK already installed on your computer, switch your JAVA_HOME and PATH to use it instead, and try it again. -- You received

java -server

2010-06-03 Thread Paul Moore
More of a Java question than a Clojure one, but it's in the context of clojure, and I don't know a better place to ask, so forgive me... I've seen a couple of references in articles about clojure to using "java -server". My "java" executable has a "serve