idea maven deploy 时报错Perhaps you
[No compiler is provided in this environment. Perhaps you are running on a JRE rather than a JDK? idea maven 打包报错问题解决。]
解决方案:
idea,项目,maven 也设置了统一的jdk,还是报错,
解决方法1:
在maven的setting.xml 文件 <profiles> 标签中加入指定JDK的版本,
<profile>
<id>JDK-1.8</id>
<activation>
<activeByDefault>true</activeByDefault>
<jdk>1.8</jdk>
</activation>
<properties>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.compilerVersion>1.8</maven.compiler.compilerVersion>
</properties>
</profile>
解决方法2:
在项目的pom.xml 文件加入maven插件,<plugins>中加入jdk路径
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
<configuration>
<fork>true</fork>
<executable>
C:\Program Files\Java\jdk1.8.0_181\bin\javac.exe(你的安装路径)
</executable>
</configuration>
</plugin>
以上解决方案转自https://www.cnblogs.com/jekaysnow/p/9550094.html
但是我的上面都设置以后,依然报这个错,于是提供解决方案三:
首先看你的jdk的配置环境是否出错
JAVA_HOME
D:\jdk1.8(这块写你自己的路径)
Path
%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;
如果这些都没错然后想想是不是你在安装jdk的时候jre的安装路径覆盖了jdk中jre的安装路径,当jre的安装路径覆盖的时候,原来jdk的jre就不会其作用。
以上。