지원되는 최신 자바 버전으로 마이그레이션하고 앱에서 기존 번들 서비스를 사용하지 않는 경우 App Engine 자바 8 웹 애플리케이션을 실행 가능한 JAR 파일로 다시 패키징해야 합니다.
애플리케이션에는 PORT 환경 변수로 지정될 수 있는 포트 8080에서 HTTP 요청에 응답하는 웹 서버를 시작하는 Main 클래스가 있어야 합니다.
예를 들면 다음과 같습니다.
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();}}
WAR 마이그레이션 예시(자바 11)
다음 안내에서는 자바 11 런타임에서 실행할 App Engine 자바 8 hello-world 애플리케이션을 JAR로 다시 패키징하는 방법을 보여줍니다.
마이그레이션은 appengine-simple-jetty-main 아티팩트를 사용합니다. 이는 WAR 파일을 로드하고 앱을 실행 가능한 JAR 파일로 패키징하는 간단한 Jetty 웹 서버가 포함된 Main 클래스를 제공합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["이해하기 어려움","hardToUnderstand","thumb-down"],["잘못된 정보 또는 샘플 코드","incorrectInformationOrSampleCode","thumb-down"],["필요한 정보/샘플이 없음","missingTheInformationSamplesINeed","thumb-down"],["번역 문제","translationIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-04-03(UTC)"],[[["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."]]],[]]