如何下载使用 google 云 shell 创建的 Spring 引导项目

How to download the Spring Boot project created using google cloud shell

我已遵循 this 教程并使用 google 云 shell 创建了一个演示 Spring 引导项目。我是云的新手,我不了解在项目下创建的这些文件在哪里以及如何下载项目

您按照教程在其中部署应用程序的 App Engine 标准环境是一个 sandboxed environment and you cannot really access the instances and the filesystem where the application is deployed. Read this 文档,可以更好地理解如何管理实例。

另一方面,App Engine 柔性环境在 Compute Engine 实例之上运行,因此您可以通过 SSH 等方式访问这些实例。

看看here and here。这两篇文章将帮助您了解 App Engine 标准环境和柔性环境的区别。

我还建议您查看在 App Engine Standard and Flexible 环境中部署 Java 应用程序的教程。