feedback icon indicating copy to clipboard operation
feedback copied to clipboard

[cloud-app-engine-springboot] Deploy a Spring Boot app to App Engine standard environment step code is outdated:

Open porturabo opened this issue 8 months ago • 0 comments

Hi team, looks like the code for the step 3 is outdated:

 curl https://start.spring.io/starter.tgz \
  -d bootVersion=3.0.5 \
  -d dependencies=web \
  -d type=maven-project \
  -d baseDir=gae-standard-example | tar -xzvf -

will throw an error, while the version updated 3.3.11 will work fine. Here is my working example:

curl -X POST https://start.spring.io/starter.tgz \
                                                            -d bootVersion=3.3.11 \
                                                            -d dependencies=web \
                                                            -d type=maven-project \
                                                            -d baseDir=gae-standard-example | tar -xzvf -

porturabo avatar Apr 30 '25 14:04 porturabo