Error in setting JAVA_HOME

前端 未结 7 2366
庸人自扰
庸人自扰 2020-12-03 07:20

I have recently downloaded Maven and followed the instructions given on this this page. I already have ant installed on my machine. Now, if I want to verify that Maven is in

7条回答
  •  庸人自扰
    2020-12-03 07:53

    JAVA_HOME should point to jdk directory and not to jre directory. Also JAVA_HOME should point to the home jdk directory and not to jdk/bin directory.

    Assuming that you have JDK installed in your program files directory then you need to set the JAVA_HOME like this:

    JAVA_HOME="C:\Program Files\Java\jdkxxx"
    

    xxx is the jdk version

    Follow this link to learn more about setting JAVA_HOME:

    http://docs.oracle.com/cd/E19182-01/820-7851/inst_cli_jdk_javahome_t/index.html

提交回复
热议问题