如果您要迁移到受支持的最新 Java 版本,并且您的应用不使用旧版捆绑服务,您必须将 App Engine Java 8 Web 应用重新封装为可执行的 JAR 文件。
您的应用必须具有一个 Main 类,该类会启动一个 Web 服务器以响应由 PORT 环境变量指定的端口 8080 上的 HTTP 请求。
例如:
importcom.sun.net.httpserver.HttpServer;importjava.io.IOException;importjava.io.OutputStream;importjava.net.InetSocketAddress;publicclassMain{publicstaticvoidmain(String[]args)throwsIOException{// Create an instance of HttpServer bound to port defined by the // PORT environment variable when present, otherwise on 8080.intport=Integer.parseInt(System.getenv().getOrDefault("PORT","8080"));HttpServerserver=HttpServer.create(newInetSocketAddress(port),0);// Set root URI path.server.createContext("/",(vart)->{byte[]response="Hello World from Google App Engine Java 11.".getBytes();t.sendResponseHeaders(200,response.length);try(OutputStreamos=t.getResponseBody()){os.write(response);}});// Start the server.server.start();}}
[[["易于理解","easyToUnderstand","thumb-up"],["解决了我的问题","solvedMyProblem","thumb-up"],["其他","otherUp","thumb-up"]],[["很难理解","hardToUnderstand","thumb-down"],["信息或示例代码不正确","incorrectInformationOrSampleCode","thumb-down"],["没有我需要的信息/示例","missingTheInformationSamplesINeed","thumb-down"],["翻译问题","translationIssue","thumb-down"],["其他","otherDown","thumb-down"]],["最后更新时间 (UTC):2025-04-03。"],[[["Migrating to the latest supported Java version requires repackaging App Engine Java 8 web applications into executable JAR files if they don't utilize legacy bundled services."],["The application's `Main` class must initialize a web server to handle HTTP requests on port 8080, potentially configured via the `PORT` environment variable."],["The `appengine-simple-jetty-main` artifact offers a `Main` class with a basic Jetty server to load WAR files, facilitating the creation of an executable JAR."],["To correctly install the dependencies, you must add the `maven-dependency` plugin in your project's `pom.xml` file and make sure that the files are installed to the `${build.directory}/appengine-staging` directory."],["The `app.yaml` file needs an `entrypoint` that references the `appengine-simple-jetty-main` object and provides your WAR file as an argument, as well as to correctly deploy, `gcloud app deploy` or `mvn package appengine:deploy -Dapp.deploy.projectId=PROJECT_ID` can be used."]]],[]]