Spring Cloud GCP
3.3.0The Spring Cloud GCP project makes the Spring Framework a first-class citizen of Google Cloud Platform (GCP).
Important
|
Spring Cloud GCP is no longer part of the Spring Cloud release train. The new repository location is https://github.com/GoogleCloudPlatform/spring-cloud-gcp. If you are upgrading from version 1.x, take a look at the migration guide to upgrade from version 1.x to 2.0.0 (or later). |
Features
Spring Cloud GCP offers a wide collection of libraries that make it easier to use Google Cloud Platform from Spring Framework applications.
Project features include:
-
Spring Cloud GCP Pub/Sub Support (Spring Integration and Spring Cloud Stream Binder)
-
Spring Data Cloud Spanner
-
Spring Data Cloud Datastore
-
Spring Data Reactive Repositories for Cloud Firestore
-
Spring Data Cloud SQL
-
Google Cloud Logging, Tracing and Monitoring (formerly Stackdriver)
-
Google Cloud Storage (Spring Resource and Spring Integration)
-
Google Cloud Vision API Template
-
Spring Security identity extraction from Google Cloud IAP or Firebase headers
-
Google Cloud BigQuery with Spring Integration
-
Secret Manager property source and API Template
-
KMS key encryption/decryption API Template
Getting Started
All Spring Cloud GCP artifacts are made available through Maven Central.
Bill of Materials
If you’re using Maven, you should first add the Spring Cloud GCP Bill of Materials (BOM) to your pom.xml
.
This will help you manage the version numbers of spring-cloud-gcp
dependencies in your project.
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.google.cloud</groupId>
<artifactId>spring-cloud-gcp-dependencies</artifactId>
<version>3.0.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
Starter Dependencies
Spring Cloud GCP offers starter dependencies through Maven to easily depend on different modules of the library. Each starter contains all the dependencies and transitive dependencies needed to begin using their corresponding Spring Cloud GCP module.
A sample of these artifacts are provided below.
Spring Cloud GCP Starter | Description | Maven Artifact Coordinates |
---|---|---|
Cloud Spanner |
Provides integrations with Google Cloud Spanner |
|
Cloud Datastore |
Provides integrations with Google Cloud Datastore |
|
Cloud Firestore |
Provides Spring Data Reactive Repositories support for Cloud Firestore |
|
Cloud Pub/Sub |
Provides integrations with Google Cloud Pub/Sub |
|
Logging |
Enables Google Cloud Logging |
|
SQL - MySQL |
Cloud SQL integrations with MySQL |
|
SQL - PostgreSQL |
Cloud SQL integrations with PostgreSQL |
|
Storage |
Provides integrations with Google Cloud Storage and Spring Resource |
|
Trace |
Enables instrumentation with Google Cloud Tracing |
|
Vision |
Provides integrations with Google Cloud Vision |
|
Security - IAP |
Extracts IAP identity information from applications deployed to Google Cloud |
|
Code Samples
The best way to learn how to use Spring Cloud GCP is to consult the sample applications on Github.
The table below highlights several samples of the most commonly used integrations in Spring Cloud GCP.
GCP Integration | Sample Application |
---|---|
Cloud Pub/Sub |
|
Cloud Spanner |
|
Cloud Datastore |
|
Cloud Firestore |
|
Cloud SQL (w/ MySQL) |
|
Cloud Storage |
|
Google Cloud Logging |
|
Google Cloud Tracing |
|
Cloud Vision |
|
Cloud Security - IAP |
Initializr
Spring Initializr is a tool which generates the scaffolding code for a new Spring Boot project. It handles the work of generating the Maven or Gradle build file so you do not have to manually add the dependencies yourself.
Spring Initializr offers three modules from Spring Cloud GCP that you can use to generate your project.
-
GCP Support: The GCP Support module contains auto-configuration support for every Spring Cloud GCP integration. Most of the autoconfiguration code is only enabled if the required dependency is added to your project.
-
GCP Messaging: Google Cloud Pub/Sub integrations work out of the box.
-
GCP Storage: Google Cloud Storage integrations work out of the box.
Contact Us
Spring Cloud GCP is an actively maintained project and we encourage users to raise issues and ask questions about the project.
We actively monitor the following communication channels:
-
Spring Cloud GCP Github Repository: Post an issue in our Github repository to ask questions, make a bug report, file feature requests, etc.
-
Spring Cloud GCP Gitter Lobby: Ask questions and talk to the developers in our Gitter chatroom.
Quickstart Your Project
Documentation
3.3.0 CURRENT GA | Reference Doc. | API Doc. |
2.0.11 GA | Reference Doc. | API Doc. |