I'm trying to install Jetty on Ubuntu 11.04 and I'm about to pull my hair out. I'm running into a classpath issue. I start Jetty with start.jar, setting JAVA_HOME to point to the JDK.
/usr/share/jetty$ export JAVA_HOME=/usr/lib/jvm/java-6-sun
/usr/share/jetty$ java -jar start.jar
[...]
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK.
It is currently set to "/usr/lib/jvm/java-6-sun-1.6.0.26/jre"
at org.apache.tools.ant.taskdefs.compilers.CompilerAdapterFactory.getCompiler(CompilerAdapterFactory.java:127)
...
Notice that it's ignoring the JAVA_HOME I set, and using the jre. I've also tried this:
java -classpath /usr/lib/jvm/java-6-sun/lib/tools.jar -jar start.jar
Same error message. It's not finding, com.sun.tools.javac.Main, and that's in tools.jar.
Down in the guts of Jetty, when it's trying to compile my .jsp's, it's using Ant, and that's doing some kind of classloader tricks, I'm guessing. Does anyone know what the secret is to telling this cranky software where my tools.jar file can be found??
Note that I've gotten the same error with the sun jdk and openjdk and, yes, I do have the JDK installed, not just the JRE.
The way apt-get installs java, the java binary that's part of the JDK points into the JRE. Like this:
ls -alph /usr/lib/jvm/java-6-sun/bin/java
lrwxrwxrwx 1 root root 15 2011-10-25 18:48 /usr/lib/jvm/java-6-sun/bin/java -> ../jre/bin/java
I'm guessing that Jetty, Jasper or Ant does some trickery to try and find tools.jar based on the location of the java executable, and that's what's failing here.
Any clues are greatly appreciated. Thanks!
java-6-sundirectory a link? (IMO it'd be weird to put a JDK under something called "jvm".) – Dave Newton Oct 25 '11 at 19:51exporttryecho $JAVA_HOMEand see where it points, also export the bin dir under JDK home:export PATH=$PATH:$JAVA_HOME/bin. – ahmedyha Oct 25 '11 at 19:57