1、The compiler compliance specified is 1.5 but a JRE 1.8 is used
解决:这个问题其实就是配置的jre和本地的jre版本不同,故将这个版本统一就可以解决了
- 右键点击项目>Properties>Java Compiler>将Compiler compliance level改为1.8
2、 Build path specifies execution environment J2SE-1.6
解决:这个问题也是由于版本不统一
- 右击点击项目,Properties—— java build path,选择Libraries 选项卡,选中jre,点击remove。
- 移除后,再添加。选择add library
- 选择默认环境或自己动手选择。这里我安装的是1.8版本。
- 此时这里的1.8就配置好了。点击应用
3、maven problem ——Description Resource Path Location Type Project configuration is not up-to-d
解决:
4、java compiler level does not match the version of the installed java project facet
错误原因:也是因为和安装版本不同导致的错误
解决:
右击出错的项目–properties–project Facets–java选择为自己安装的版本,即可