File tree Expand file tree Collapse file tree 1 file changed +7
-7
lines changed
spring-boot-project/spring-boot-docs/src/main/asciidoc Expand file tree Collapse file tree 1 file changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -400,9 +400,13 @@ identifier for you and also sets up HTTP routes. Add a Java app to the project a
400
400
it empty and then use the https://cloud.google.com/sdk/downloads[Google Cloud SDK] to
401
401
push your Spring Boot app into that slot from the command line or CI build.
402
402
403
- App Engine needs you to create an `app.yaml` file to describe the resources your app
404
- requires. Normally, you put this file in `src/main/appengine`, and it should resemble the
405
- following file:
403
+ App Engine Standard requires you to use WAR packaging. Follow
404
+ https://github.com/GoogleCloudPlatform/getting-started-java/blob/master/appengine-standard-java8/springboot-appengine-standard/README.md[these steps]
405
+ to deploy App Engine Standard application to Google Cloud.
406
+
407
+ Alternatively, App Engine Flex requires you to create an `app.yaml` file to describe
408
+ the resources your app requires. Normally, you put this file in `src/main/appengine`,
409
+ and it should resemble the following file:
406
410
407
411
[source,yaml,indent=0]
408
412
----
@@ -446,10 +450,6 @@ build configuration, as shown in the following example:
446
450
Then deploy with `mvn appengine:deploy` (if you need to authenticate first, the build
447
451
fails).
448
452
449
- NOTE: Google App Engine Classic is tied to the Servlet 2.5 API, so you cannot deploy a
450
- Spring Application there without some modifications. See the
451
- <<howto.adoc#howto-servlet-2-5,Servlet 2.5 section>> of this guide.
452
-
453
453
454
454
455
455
[[deployment-install]]
You can’t perform that action at this time.
0 commit comments