gpt4 book ai didi

java - 部署到 Google App Engine 时出现“类文件是 Java 8,但最大支持的是 Java 7”错误

转载 作者:行者123 更新时间:2023-12-02 12:22:11 24 4
gpt4 key购买 nike

我在 Google App Engine 上有一个 Java 服务器。最近由于这个错误一直无法在线部署:

 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>

最佳答案

您需要按照以下步骤更改java编译器合规性级别

1) 转到项目属性

2) 单击“属性” View 中的“Java Compiler” View 。

3) 检查启用项目特定设置,然后选择您想要的编译器合规级别(jdk7 或 jdk8)。

enter image description here

关于java - 部署到 Google App Engine 时出现“类文件是 Java 8,但最大支持的是 Java 7”错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45685192/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com