解决方案
1. 原因
idea的默认配置JDK版本与当前项目所需版本不一样方案一(每一个项目可能都要配置一遍)
Ctrl+shit+alt+s 打开项目结构,设置项目所需的JDK版本,本项目需要JDK8Modules的JDK版本为5,这时就会报Error : java 错误 : 不支持发行版本5
改为JDK8,保存即可 左上角打开 File 里的 Setting,改为JDK8(即1.8)保存即可。
至此,问题完美解决。
方案二(配置一次即可)
找到安装maven的文件夹,在maven\conf\setting.xml 中设置默认JDK版本,项目导入默认使用该版本JDK。 <!--maven 配置默认的JDK版本--> <profile> <id>development</id> <activation> <jdk>1.8</jdk> <activeByDefault>true</activeByDefault> </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>
粘贴到setting.xml文件里保存即可完美解决JDK版本配置。