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(转)
解决办法:把
JAVA_HOME(java的安装目录)/lib/tools.jar拷到TOMCAT_HOME(tomcat的安装目录)\common\lib下,重新启动Tomcat。
出现的原因及解决方法:
安装tomcat5.0的时候指定了jre的路径,导致tomcat_home, java_home都已经添加到了环境变量里,但启动jsp的时候却出现了以下的异常:
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
产生的原因是java.home指到$JAVA_HOME/jre下了,而其lib下的tools.jar跟$JAVA_HOME/lib/tools.jar不一样,编译jsp的时候需要用到后者.
注: java.home在运行的时候就会指向$JRE_HOME.
jdk 1.4.2_06-b03
jdk 1.5.0_05-b05
都会出现这种情况.
修改方法:在tomcat控制台(双击tomcate5w.exe)java选项-〉java virtual machine
设置为%java_home%\jre\bin\server\jvm.dll
tomcat控制台java选项-〉Java classpath:
%tomcat_home%\bin\bootstrap.jar;%java_home%\lib\tools.jar
注:%java_home%、%tomcat_home分别指jdk、tomcat的安装根目录。
分享到:
相关推荐
### Linux 下 "Error running javac compiler" 解决方案详解 #### 问题背景 在 Linux 系统中,遇到“Error running javac compiler”的错误时,通常意味着 Java 编译器未能正常工作。这类问题可能源于多种因素,如...
文档中提及了一个典型问题:在服务方式下启动Tomcat时遇到`Unable to find a javac compiler; com.sun.tools.javac.Main is not on the classpath`的错误。这通常源于`JAVA_HOME`未被正确识别或服务配置中未引用。...
- 错误信息:`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` - 解决方案: - 检查 `JAVA_HOME` 是否正确指向 J2SDK 安装...
- 当以服务方式安装Tomcat时,可能会遇到编译器找不到的问题,例如:“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”。 -...
- 如果出现错误提示,例如 "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",则可能是因为没有正确设置 `JAVA_HOME` 环境...
- 在某些情况下,可能会遇到如下错误:“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”。 - 解决方案是在服务启动配置中...
- 错误提示:“Unable to find a Java compiler; com.sun.tools.javac.Main is not on the classpath. Perhaps JAVA_HOME does not point to the JDK.” 这个错误通常是因为`JAVA_HOME`没有正确设置或者指向了JRE而...
- 文中提到了一个错误:“Unable to find a java compiler; com.sun.tools.javac.Main is not on the classpath.” 这个问题通常是由于Eclipse找不到正确的编译器导致的。 - 解决方法是在Eclipse的首选项中确认已...