centos下maven编译 mvn package 报错:No compiler is provided in this environment. Perhaps you are running
解决方案
在centos7的terminal中输入java -verison是没问题的,但是javac的话就会提示没有此命令
百度了好久,说的很复杂,照着做了,最后也没有成功
后来在stackoverflow上看到了这个
84 down vote accepted You installed the Java Runtime Environment (JRE) only, which does not contain javac. For javac, you have to install the OpenJDK Development Environment. You can install java-devel or java-1.6.0-openjdk-devel, which both include javac. By the way: you can find out which package provides javac with a yum search, e.g. su -c ‘yum provides javac’ Another note: using yum and openjdk is only one possibility to install the JDK. Many people prefer Sun/Oracle’s “original” SDK. See How to install Java SDK on CentOS? and links for alternatives.
大意就是我们用yum来装原生的 ,执行以下命令即可。
yum install java-devel
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧