两年前,我用App Engine Cloud Endpoint和Datastore (Java应用程序)编写了一个Google App Engine应用程序。
现在,我必须集成一个用Spring Boot编写的应用程序。
集成之后,我的期望是Google App Engine Cloud Endpoint应该像Spring Boot应用程序一样工作得很好。
更多信息:集成意味着,两年前我使用这个示例项目编写了一个应用程序:https://github.com/GoogleCloudPlatform/java-docs-samples/tree/7f5772f91a203ce266804cfbe89429e2bb026273/appengine/endpoints-v1-helloworld
现在,我有一个Spring Boot应用程序,它与下面的代码类似:https://github.com/GoogleCloudPlatform/getting-started-java/tree/master/appengine-standard-java8/springboot-appengine-standard/src/main/java/com/example/appengine/demos/springboot
我的问题是:有可能是这样的吗?
发布于 2018-03-30 03:32:24
如果您想在Spring Boot应用程序中使用端点的管理功能,App Engine Flex将正式支持此功能。理论上这在App Engine Standard上是可能的,但不是一个受支持的场景。如果你想要一个使用API框架和Spring Boot的应用程序,我认为这是可能的,尽管我不知道为什么你会想要使用两个不同的web框架。使用其中一种会更有效率。
https://stackoverflow.com/questions/49333947
复制相似问题