Unable to locate the Javac Compiler

后端 未结 2 671
[愿得一人]
[愿得一人] 2020-12-31 06:05

I tried to mvn install and got this message:

Compilation failure
Unable to locate the Javac Compiler in:
  /usr/lib/jvm/java-7-openjdk-amd64/jre         


        
相关标签:
2条回答
  • 2020-12-31 06:32

    it seems like your PATH is not picked up correctly... does the output of "echo $PATH" contain the directory where javac resides? I would suggest following:

    open terminal and do an:

    export JAVA_HOME=/usr/lib/jvm/jdk1.7.0_03
    export PATH=$PATH:$JAVA_HOME/bin
    javac -version
    which javac
    

    if javac -version still does not work create a symlink in /usr/local/bin pointing to your javac binary:

    cd /usr/local/bin
    ln -s /usr/lib/jvm/jdk1.7.0_03/bin/javac javac
    

    this should get you up an running... an alternative is to try setting up java via your package management system (e.g. "apt-get install java" or sth. similar)

    0 讨论(0)
  • 2020-12-31 06:52

    I faced similar error on an ubuntu machine while running a maven build from Jenkins. If output of 'javac -version' prompts below messages:

    "The program 'javac' can be found in the following packages: default-jdk ecj gcj-5-jdk openjdk-8-jdk-headless gcj-4.8-jdk gcj-4.9-jdk openjdk-9-jdk-headless Try: apt install "

    Then you can install "openjdk-8-jdk-headless" using:

    apt install openjdk-8-jdk-headless

    This solved my problem and the maven build went through ok.

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