4

当我尝试在谷歌应用服务器上的 netbeans 中运行示例项目时,出现以下错误。服务器没有启动。如果存在这些错误,我该如何解决?我正在使用 netbeans 7.1

BUILD FAILED
W:\UnderTest\NetbeansCurrent\Guestbook\nbproject\build-impl.xml:550: The following error occurred while executing this line:
W:\UnderTest\NetbeansCurrent\Guestbook\nbproject\build-impl.xml:300: Unable to find a javac compiler;
com.sun.tools.javac.Main is not on the classpath.
Perhaps JAVA_HOME does not point to the JDK.
It is currently set to "C:\Program Files\Java\jre7"
4

3 回答 3

4

安装 jdk 并将环境变量中的 JAVA_HOME 设置为安装 jdk 的路径。目前它指向jre。

于 2012-05-28T06:36:54.297 回答
1

试试这个 - 临时

视窗

netbeans.exe --jdkhome "c:\JDK\path"  

Unix

    netbeans --jdkhome /usr/bin/yourjdk

如果要永久设置该选项,可以在netbeans.conf文件中进行。和改变。

# Default location of JDK, can be overridden by using --jdkhome <dir>:
netbeans_jdkhome="c:\your\JDK\path"
于 2012-05-28T06:52:53.490 回答
0

将听到可能的解决方案:在 netbeans 中设置 jdk 路径, 或者,如果您在 windows env 中设置 JAVA_HOME,则使用 %JAVA_HOME%

于 2012-05-28T06:41:29.363 回答