Will Cloud Endpoints Frameworks support Java11 in the future?

484 Views Asked by At

I'm thinking about migrating my App Engine Project to Java11. Will Cloud Endpoints Frameworks eventually support Java11 or do I need to switch to a different framework?

1

There are 1 best solutions below

3
On

The best way to know if the support will be added, is by opening an issue on the github page of Cloud Endpoints Framework

Google recently launched a new service called API gateway, this is like a new version of Cloud Endpoints both works by using OpenAPI v2 and can work as a replacement for Cloud Endpoints Framework, I deployed a hello world application in App engine standrad using Java 11 and works as is expected, please check the API Gateway+App Engine quickstart to know how to deploy an API Gateway service for your App Engine service

Technically API gateway will be use a service account to authenticate all incoming requests by using Cloud IAP, for example:

[request] --> [API gateway] --[request+ auth w/service account]-->[Cloud IAP] --> [App Engine]