- Run
./gradlew bootRun
- Run
curl -I localhost:8080
- Working: The
Last-Modified
is 2023 and not 1980
- Edit
build.grade
, changeproject-id
with the id of your app engine flexible project - Run
./gradlew appengineDeploy
- Grab your deploy version URL in the console and change the next command
- Run
curl -I https://20231115t133951-dot-project-id.ue.r.appspot.com
- Bug: The
Last-Modified
should be 2023 and not 1980
- Edit
app.yaml
, commentruntime_config
section with java 17 and uncomment the one with java 8 - Edit
build.grade
, commentsourceCompatibility
andtargetCompatibility
with java 17 and uncomment the ones with java 8 - Run
./gradlew appengineDeploy
- Grab your deploy version URL in the console and change the next command
- Run
curl -I https://20231115t135745-dot-project-id.ue.r.appspot.com
- Working: The
Last-Modified
is 2023 and not 1980