JAVA_HOME does not point to the JDK : Unable to start google app engine

前端 未结 3 1560
自闭症患者
自闭症患者 2021-02-06 16:29

I get the following errors when i try to run a sample project in netbeans on google app server. The server doesn\'t start up. How can i resolve these errors if they exist ? I am

相关标签:
3条回答
  • 2021-02-06 17:11

    probable solution will be hear : setting jdk path in netbeans or , if you setting JAVA_HOME in windows env then use %JAVA_HOME%

    0 讨论(0)
  • 2021-02-06 17:16

    Try this- for temporary

    Windows

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

    Unix

        netbeans --jdkhome /usr/bin/yourjdk
    

    If you want to set the option permanently, you can do so in the netbeans.conf file. and change .

    # Default location of JDK, can be overridden by using --jdkhome <dir>:
    netbeans_jdkhome="c:\your\JDK\path"
    
    0 讨论(0)
  • 2021-02-06 17:25

    Install jdk and set JAVA_HOME in environments variables to path that you jdk was installed. Currently it points to jre.

    0 讨论(0)
提交回复
热议问题