zoukankan      html  css  js  c++  java
  • tomcat Error:NB:JAVA_HOME should point to a JDK not a JRE 解决方法

    环境:win7

    tomcata7.0解压版本

    执行:service.bat install

    报错:JAVA_HOME should point to a JDK not a JRE

    网上找了几种解决方案,其中一种是成功的:

    在setclasspath.bat的头部定义了JAVA_HOME和JRE_HOME的值,那么在这里手动设置JAVA_HOME变量

    rem ---------------------------------------------------------------------------
    rem Set CLASSPATH and Java options
    rem
    rem $Id: setclasspath.bat 505241 2007-02-09 10:22:58Z jfclere $
    rem ---------------------------------------------------------------------------

    set JAVA_HOME=C:Program FilesJavajdk1.5.0_05
    set JRE_HOME=C:Program FilesJavajre1.5.0_05

    rem Make sure prerequisite environment variables are set
    if not "%JAVA_HOME%" == "" goto gotJdkHome
    if not "%JRE_HOME%" == "" goto gotJreHome
    echo Neither the JAVA_HOME nor the JRE_HOME environment variable is defined
    echo At least one of these environment variable is needed to run this program
    goto exit

  • 相关阅读:
    寒假作业3:简化电梯优化
    线段树2
    线段树1
    数字游戏(二)
    P1352 没有上司的舞会
    加分二叉树
    数字转换
    BLO-Blockade
    树上倍增法求LCA
    种西瓜
  • 原文地址:https://www.cnblogs.com/wdkshy/p/7090564.html
Copyright © 2011-2022 走看看