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
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
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
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
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
> 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
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
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