0
我在Google App Engine上有一個Java服務器。最近因爲這個錯誤我一直無法在網上部署:當部署到Google App Engine時,'Class file is Java 8,但支持最大支持Java 7'錯誤
IllegalArgumentException: Class file is Java 8 but max supported is Java 7
有誰能提醒?我已經嘗試了基於其他報告如下:
web.xml
版本設置爲2.5- 設置Eclipse的JRE到Java 7(在運行配置> JRE>執行環境:JavaSE的-1.7)
添加下面以
pom.xml
:<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>3.5.1</version> <configuration> <source>1.7</source> <target>1.7</target> </configuration> </plugin>