Create and deploy an HTTP Cloud Run function with Java
This guide takes you through the process of writing a Cloud Run function using the Java runtime. There are two types of Cloud Run functions:
- An HTTP function, which you invoke from standard HTTP requests.
- An event-driven function, which is triggered by events in your Cloud infrastructure, such as messages on a Pub/Sub topic or changes in a Cloud Storage bucket.
The document shows how to create a simple HTTP function and build it using either Maven or Gradle.
For more detail, read writing HTTP functions and writing event-driven functions.
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.
-
Enable the Cloud Functions, Cloud Build, Artifact Registry, Cloud Run, and Cloud Logging APIs.
-
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.
-
Enable the Cloud Functions, Cloud Build, Artifact Registry, Cloud Run, and Cloud Logging APIs.
- Install and initialize the Google Cloud SDK.
- Update and install
gcloudcomponents with the following command.gcloud components update
-
Prepare your development environment.
Create your function
This section describes how to create a function.
Maven
Create a directory on your local system for the function code:
Linux or Mac OS X:
mkdir ~/helloworld cd ~/helloworldWindows:
mkdir %HOMEPATH%\helloworld cd %HOMEPATH%\helloworldCreate the project structure to contain the source directory and source file.
mkdir -p ~/helloworld/src/main/java/functions touch ~/helloworld/src/main/java/functions/HelloWorld.javaAdd the following contents to the
HelloWorld.javafile:This example function outputs the greeting "Hello World!"
Gradle
Create a directory on your local system for the function code:
Linux or Mac OS X:
mkdir ~/helloworld-gradle cd ~/helloworld-gradleWindows:
mkdir %HOMEPATH%\helloworld-gradle cd %HOMEPATH%\helloworld-gradleCreate the project structure to contain the source directory and source file.
mkdir -p src/main/java/functions touch src/main/java/functions/HelloWorld.javaAdd the following contents to the
HelloWorld.javafile:This example function outputs the greeting "Hello World!"
Specify dependencies
The next step is to set up dependencies:
Maven
Change directory to the helloworld directory you created above, and create
a pom.xml file:
cd ~/helloworld
touch pom.xml
To manage dependencies using Maven, specify the dependencies in
the <dependencies> section inside the pom.xml file
of your project. For this exercise, copy the following contents
into your pom.xml file.
See helloworld for a complete sample based on Maven.
Gradle
Change directory to the helloworld-gradle directory you created above, and
create a build.gradle file:
cd ~/helloworld-gradle
touch build.gradle
To manage dependencies using Gradle, specify the dependencies in
the build.gradle file
of your project. For this exercise, copy the following contents
into your build.gradle file. Note that this build.gradle file includes a
custom task to help you run functions locally.
See helloworld-gradle for a complete sample based on Gradle.
Build and test your function locally
Before deploying the function, you can build and test it locally:
Maven
Run the following command to confirm that your function builds:
mvn compileAnother option is to use the
mvn packagecommand to compile your Java code, run any tests, and package the code up in a JAR file within the target directory. You can learn more about the Maven build lifecycle here.Start your function with the following command:
mvn function:runTest your function by visiting
http://localhost:8080in a browser or by runningcurl localhost:8080from another window.See Sending requests to local functions for more detail.
Gradle
Run the following command to confirm that your function builds:
gradle buildStart your function with the following command:
gradle runFunction -Prun.functionTarget=functions.HelloWorldTest your function by visiting
http://localhost:8080in a browser or by runningcurl localhost:8080from another window.See Sending requests to local functions for more detail.
Deploy your function
To deploy your function, run the following
command in the helloworld directory (if you're using maven)
or the helloworld-gradle directory (for gradle):
gcloud functions deploy java-http-function \
--gen2 \
--entry-point=functions.HelloWorld \
--runtime=java21 \
--region=REGION \
--source=. \
--trigger-http \
--allow-unauthenticated
Replace REGION with the name of the Google Cloud region where you want to deploy your function
(for example, us-west1).
The optional --allow-unauthenticated flag lets you reach your function
without authentication.
java-http-function is the registered name by which your function
is identified in the Google Cloud console, and --entry-point specifies
your function's fully qualified class name (FQN).
Test your deployed function
After the function deploys, note the
uriproperty from the output of thegcloud functions deploycommand, or retrieve it with the following command:gcloud functions describe java-http-function \ --region=REGIONReplace REGION with the name of the Google Cloud region where you deployed your function (for example,
us-west1).Visit this URL in your browser. The function returns a "Hello World!" message.
View your function's logs
View the logs with the command-line tool
You can review your function's logs with the Cloud Logging UI or via the Google Cloud CLI.
To view logs for your function with the gcloud CLI, use the
logs read command:
gcloud functions logs read \
--gen2 \
--limit=10 \
--region=REGION \
java-http-function
Replace REGION with the name of the Google Cloud region where you deployed your function
(for example, us-west1).
The output resembles the following:
LEVEL: I
NAME: my-first-function
TIME_UTC: 2023-05-29 23:09:57.708
LOG:
LEVEL: I
NAME: my-first-function
TIME_UTC: 2023-05-29 23:05:53.257
LOG: Default STARTUP TCP probe succeeded after 1 attempt for container "my--first--function-1" on port 8080.
LEVEL:
NAME: my-first-function
TIME_UTC: 2023-05-29 23:05:53.248
LOG: 2023-05-29 23:05:53.248:INFO:oejs.Server:main: Started @892ms
View logs with the logging dashboard
To view the logs for your function with the logging dashboard, open the Cloud Run functions Overview page and click the name of your function from the list, then click the Logs tab.

