是否可以在 Spring Boot + Datastore 中实现创建 Web 项目?
Is it possible to implement create a web project in Spring Boot + Datastore?
我目前是网络开发的新手,现在我开始使用 Spring 启动应用程序,我将其转换为标准 App Engine 项目。我想知道是否可以 not 将我的 Spring 引导应用程序转换为我的 App Engine 项目并仍然使用 Datastore 作为数据库?
是的,可以从 GAE 灵活环境中的应用程序、GAE 外部甚至 Google 云外部使用云数据存储。来自 Cloud Datastore(强调我的):
You can access Cloud Datastore from anywhere using the Cloud
Datastore API. Use the Google Cloud client libraries to store and
retrieve data from Cloud Datastore.
The same Cloud Datastore data is available regardless of if you use
the App Engine libraries, the Google Cloud client libraries, or call
the API directly.
但是你不能使用GAE Standard Environment Client Libraries, you have to use either the Cloud Datastore Client Libraries or the Cloud Datastore API v1。
可能感兴趣:Deploying to the App Engine Flexible Environment 指南恰好使用 spring 引导应用程序作为示例。
我目前是网络开发的新手,现在我开始使用 Spring 启动应用程序,我将其转换为标准 App Engine 项目。我想知道是否可以 not 将我的 Spring 引导应用程序转换为我的 App Engine 项目并仍然使用 Datastore 作为数据库?
是的,可以从 GAE 灵活环境中的应用程序、GAE 外部甚至 Google 云外部使用云数据存储。来自 Cloud Datastore(强调我的):
You can access Cloud Datastore from anywhere using the Cloud Datastore API. Use the Google Cloud client libraries to store and retrieve data from Cloud Datastore.
The same Cloud Datastore data is available regardless of if you use the App Engine libraries, the Google Cloud client libraries, or call the API directly.
但是你不能使用GAE Standard Environment Client Libraries, you have to use either the Cloud Datastore Client Libraries or the Cloud Datastore API v1。
可能感兴趣:Deploying to the App Engine Flexible Environment 指南恰好使用 spring 引导应用程序作为示例。