IDE报-source 1.5xxxx错误

最近的一个项目导入到IntelIiJ IDEA 中编译运行报如下错误:
IDE报-source 1.5xxxx错误_第1张图片

解决方法查看pom文件中是否有如下代码:

        <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.8</source>
                    <target>1.8</target>
                </configuration>
         </plugin>

查看项目工程的设置

IDE报-source 1.5xxxx错误_第2张图片
IDE报-source 1.5xxxx错误_第3张图片
IDE报-source 1.5xxxx错误_第4张图片
这些都设置正确之后,就可以了!

你可能感兴趣的:(IDE工具使用)