低于1.7的源代码级别不允许此处使用资源规范

问题描述

尽管您使用的是Java 1.7,但仍可以像从Java 1.6编译器一样编译源代码(例如,对于交叉编译很有用)。如hivam Tiwari在Eclipse中所说,您可以在window-> preferences-> java-> Compiler Compiler中进行更改

如果您使用的是Maven,则应添加以下插件

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

解决方法

在运行Java程序时在Eclipse中出现以下错误

Caused by: java.lang.Error: Unresolved compilation problem: 
    Resource specification not allowed here for source level below 1.7

虽然我使用的是Java 1.7.25,并且所有的eclipse设置都已到位,但不确定为什么会出现此错误

解。

通过使用Maven在Eclipse中更新项目解决了问题。