This page shows you how to configure, deploy, and send requests to a sample API using Cloud Endpoints Frameworks for Java. Endpoints Frameworks for Java is integrated with the App Engine standard Java 8 runtime environment. Endpoints Frameworks consists of tools, libraries and capabilities that allow you to generate APIs and client libraries from an App Engine application.
Objectives
Use the following high-level task list as you work through the tutorial. All tasks are required to successfully send requests to the API.
- Set up a Google Cloud project. See Before you begin.
- Install required software and create an App Engine application. See Installing and configuring required software.
- Download the sample code. See Getting the sample code.
- Generate an OpenAPI configuration file. See Configuring Cloud Endpoints.
- Deploy the Endpoints configuration to create an Endpoints service. See Deploying the Endpoints configuration.
- Run the sample on your computer. See Running the sample locally.
- Create a backend to serve the API and deploy the API. See Deploying the API backend.
- Send a request to the API. See Sending a request to the API.
- Track API activity. See Tracking API activity.
- Avoid incurring charges to your Google Cloud account. See Clean up.
Costs
In this document, you use the following billable components of Google Cloud:
To generate a cost estimate based on your projected usage,
use the pricing calculator.
When you finish the tasks that are described in this document, you can avoid continued billing by deleting the resources that you created. For more information, see Clean up.
Before you begin
- Sign in to your Google Cloud account. If you're new to Google Cloud, create an account to evaluate how our products perform in real-world scenarios. New customers also get $300 in free credits to run, test, and deploy workloads.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
-
In the Google Cloud console, on the project selector page, select or create a Google Cloud project.
-
Make sure that billing is enabled for your Google Cloud project.
- Make note of the project ID because it is needed later.
Installing and configuring required software
- If you don't have Java 8 installed, download the Java Development Kit (JDK) from Oracle and install it. Because Endpoints Frameworks for Java depends on the App Engine standard Java 8 runtime environment, Endpoints Frameworks doesn't support any other versions of Java.
- If you don't have Maven 3.3.9 or higher, download and install it.
-
You need an application to send requests to the sample API.
- Linux and macOS users: This tutorial provides an example of using
curl
, which typically comes pre-installed on your operating system. If you don't havecurl
, you can download it from thecurl
Releases and downloads page. - Windows users: This tutorial provides an example using
Invoke-WebRequest
, which is supported in PowerShell 3.0 and later.
- Linux and macOS users: This tutorial provides an example of using
- Download and initialize the Google Cloud CLI.
- Run the following commands:
- Make sure that the gcloud CLI is authorized to access your data and services on Google Cloud:
gcloud auth login
- Use application default credentials:
gcloud auth application-default login
- Install the Google Cloud SDK
app-engine-java
component:gcloud components install app-engine-java
- Update to the latest version of the Google Cloud SDK and all components:
gcloud components update
- Make sure that the gcloud CLI is authorized to access your data and services on Google Cloud:
- Create an App Engine application:
-
Set the default project to your project ID.
gcloud config set project YOUR_PROJECT_ID
Replace
YOUR_PROJECT_ID
with your Google Cloud project ID. If you have other Google Cloud projects, and you want to usegcloud
to manage them, see Managing gcloud CLI configurations. - Select the region where you want to create your App Engine application. Run the
following command to get a list of regions:
gcloud app regions list
- Create an App Engine application by using the following command.
Replace
YOUR_PROJECT_ID
with your Google Cloud project ID andYOUR_REGION
with the region where you want the App Engine application created in.gcloud app create \ --project=YOUR_PROJECT_ID \ --region=YOUR_REGION
-
Set the default project to your project ID.
Note for Windows users: If you are installing the JDK and Maven on Windows, install them in a directory that doesn't have a space in the path. See Maven on Windows for more information.
Getting the sample code
To clone the sample API from GitHub:
Clone the sample repository to your local machine:
git clone https://github.com/GoogleCloudPlatform/java-docs-samples
Change to the directory containing the sample code:
cd java-docs-samples/appengine-java8/endpoints-v2-backend
Configuring Endpoints
The sample code includes the Endpoints Frameworks tool that generates an OpenAPI configuration file that describes the sample code's REST API. Follow the steps in this section to configure and build the sample Maven project so that you can then generate the OpenAPI configuration file.
Adding the project ID to the sample API code
You must add the project ID obtained when you created your project
to the sample's pom.xml
before you can deploy the code.
To add the project ID:
Edit the file
java-docs-samples/appengine-java8/endpoints-v2-backend/pom.xml
.Search for
<endpoints.project.id>
, and replaceYOUR_PROJECT_ID
with your Google Cloud project ID.For example:
<endpoints.project.id>example-project</endpoints.project.id>
Save your changes.
Building the sample project
To build the project:
Make sure you are in the directory
java-docs-samples/appengine-java8/endpoints-v2-backend
.Run the following command:
mvn clean package
Wait for the project to build. When the project successfully finishes, a message similar to this one displays:
[INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 14.846s [INFO] Finished at: Wed April 13 09:43:09 PDT 2016 [INFO] Final Memory: 24M/331M
Generating the OpenAPI configuration file
You use a tool from the Endpoints Frameworks library to generate an
OpenAPI document called openapi.json
. This file describes the sample code's
REST API.
To generate the OpenAPI configuration file:
Invoke the Endpoints Frameworks tool using this command:
mvn endpoints-framework:openApiDocs
Wait for the configuration spec to build. When it finishes a message similar to this one displays:
OpenAPI document written to target/openapi-docs/openapi.json
Ignore any messages about failure to load a static logger class.
Deploying the Endpoints configuration
To deploy the Endpoints configuration, you use Service Infrastructure, Google’s foundational services platform, used by Endpoints Frameworks and other services to create and manage APIs and services
To deploy the configuration file:
Make sure you are in the directory
java-docs-samples/appengine-java8/endpoints-v2-backend
.Deploy the OpenAPI configuration file that was generated in the previous section:
gcloud endpoints services deploy target/openapi-docs/openapi.json
This creates a new Endpoints service with the name in the format
YOUR_PROJECT_ID.appspot.com
. This name is configured in
pom.xml
and other configuration files included in the sample. Note that
when you deploy the API on App Engine, a DNS record is created using
the name format YOUR_PROJECT_ID.appspot.com
, which is
the fully qualified domain name (FQDN) that you use when you send requests to
the API.
As it is creating and configuring the service, Service Management outputs
information to the terminal. You can safely ignore the warnings
about the paths in openapi.json
not requiring an API key. On
successful completion, a line similar to the following displays
the service configuration ID and the service name:
Service Configuration [2017-02-13-r2] uploaded for service [example-project-12345.appspot.com]
In the preceding example, 2017-02-13-r2
is the service configuration
ID and example-project-12345.appspot.com
is the service name.
See
gcloud
Endpoints services deploy
for more information.
Checking required services
To provide API management, Endpoints Frameworks requires the following services:Name | Title |
---|---|
servicemanagement.googleapis.com |
Service Management API |
servicecontrol.googleapis.com |
Service Control API |
endpoints.googleapis.com |
Google Cloud Endpoints |
In most cases, the gcloud endpoints services deploy
command enables these
required services. However, the gcloud
command completes successfully but
doesn't enable the required services in the following circumstances:
If you used a third-party application such as Terraform, and you don't include these services.
You deployed the Endpoints configuration to an existing Google Cloud project in which these services were explicitly disabled.
Use the following command to confirm that the required services are enabled:
gcloud services list
If you do not see the required services listed, enable them:
gcloud services enable servicemanagement.googleapis.comgcloud services enable servicecontrol.googleapis.com
gcloud services enable endpoints.googleapis.com
Also enable your Endpoints service:
gcloud services enable ENDPOINTS_SERVICE_NAME
To determine the ENDPOINTS_SERVICE_NAME you can either:
After deploying the Endpoints configuration, go to the Endpoints page in the Cloud console. The list of possible ENDPOINTS_SERVICE_NAME are shown under the Service name column.
For OpenAPI, the ENDPOINTS_SERVICE_NAME is what you specified in the
host
field of your OpenAPI spec. For gRPC, the ENDPOINTS_SERVICE_NAME is what you specified in thename
field of your gRPC Endpoints configuration.
For more information about the gcloud
commands, see
gcloud
services.
Running the sample locally
After deploying the Endpoints configuration, you can run the sample locally.
Create an environment variable called
ENDPOINTS_SERVICE_NAME
, which is used in the sample'sappengine-web.xml
file to set the hostname. In the following, replaceYOUR_PROJECT_ID
with your Google Cloud project ID.In Linux or Mac OS:
export ENDPOINTS_SERVICE_NAME=YOUR_PROJECT_ID.appspot.com
In Windows PowerShell:
$Env:ENDPOINTS_SERVICE_NAME="YOUR_PROJECT_ID.appspot.com"
Acquire new user credentials to use for Application Default Credentials:
gcloud auth application-default login
Run the development server:
mvn appengine:run
The local instance is reachable on
http://localhost:8080
as indicated by the logs printed by themvn appengine:run
command:[INFO] GCLOUD: INFO: Module instance default is running at http://localhost:8080/
Send a request to the local instance:
Linux or Mac OS
curl \
--request POST \
--header "Content-Type: application/json" \
--data '{"message":"hello world"}' \
http://localhost:8080/_ah/api/echo/v1/echo
In the preceding curl
:
- The
--data
option specifies the data to post to the API. - The
--header
option specifies that the data is in JSON format.
PowerShell
(Invoke-WebRequest -Method POST -Body '{"message": "hello world"}' `
-Headers @{"content-type"="application/json"} `
-URI "http://localhost:8080/_ah/api/echo/v1/echo").Content
In the previous example, the first two lines end in a backtick. When you paste the example into PowerShell, make sure there isn't a space following the backticks. For information about the options used in the example request, see Invoke-WebRequest in the Microsoft documentation.
The API echoes back the message that you send it, and responds with the following:
{
"message": "hello world"
}
Deploying the API backend
So far you have deployed the OpenAPI configuration to Service Management, but you haven't yet deployed the code that serves the API backend. This section walks you through deploying the sample API to App Engine.
To deploy the API backend:
Make sure you are in the directory
java-docs-samples/appengine-java8/endpoints-v2-backend
Deploy the API implementation code using Maven:
mvn appengine:deploy
The first time you upload a sample app, you might be prompted to authorize the deployment. Follow the prompts. When you are presented with a browser window containing a code, copy it to the terminal window.
Wait for the upload to finish.
We recommend that you wait a few minutes before sending requests to your API while App Engine completely initializes.
Sending a request to the API
After you deploy the API and its configuration file, you can send requests to the API.
Linux or Mac OS
Send an HTTP request by using curl
. Replace [YOUR_PROJECT_ID]
with your
Google Cloud project ID:
curl \
--request POST \
--header "Content-Type: application/json" \
--data '{"message":"hello world"}' \
https://[YOUR_PROJECT_ID].appspot.com/_ah/api/echo/v1/echo
In the preceding curl
:
- The
--data
option specifies the data to post to the API. - The
--header
option specifies that the data is in JSON format.
PowerShell
Send an HTTP request by using Invoke-WebRequest
. Replace [YOUR_PROJECT_ID]
with your Google Cloud project ID:
(Invoke-WebRequest -Method POST -Body '{"message": "hello world"}' `
-Headers @{"content-type"="application/json"} -URI `
"https://[YOUR_PROJECT_ID].appspot.com/_ah/api/echo/v1/echo").Content
In the previous example, the first two lines end in a backtick. When you paste the example into PowerShell, make sure there isn't a space following the backticks. For information about the options used in the example request, see Invoke-WebRequest in the Microsoft documentation.
Third-party app
You can use a third-party application such as the Chrome browser extension Postman to send the request:
- Select
POST
as the HTTP verb. - For the header, select the key
content-type
and the valueapplication/json
. - For the body, enter the following:
{"message":"hello world"}
-
Enter the URL to the sample application. For example:
https://example-project-12345.appspot.com/_ah/api/echo/v1/echo
The API echoes back the message that you send it, and responds with the following:
{
"message": "hello world"
}
If you didn't get a successful response, see Troubleshooting response errors.
You just deployed and tested an API in Endpoints Frameworks!
Tracking API activity
View the activity graphs for your API in the Google Cloud console on the Endpoints > Service page.
Go to the Endpoints Services page
It might take a few moments for the request to be reflected in the graphs.
Look at the request logs for your API in the Logs Explorer page.
Creating a developer portal for the API
You can use Cloud Endpoints Portal to create a developer portal, a website that you can use to interact with the sample API. To learn more, see Cloud Endpoints Portal overview.
Clean up
To avoid incurring charges to your Google Cloud account for the resources used in this tutorial, either delete the project that contains the resources, or keep the project and delete the individual resources.
- In the Google Cloud console, go to the Manage resources page.
- In the project list, select the project that you want to delete, and then click Delete.
- In the dialog, type the project ID, and then click Shut down to delete the project.
What's next
- Learn about the Endpoints Frameworks architecture.
- Learn about available API annotations.
- Learn about serving your API from a different path.
- Learn about monitoring your API.
- Learn about restricting access with API keys.
- Learn about handling API versioning.
- Learn about community support options.