Skip to content

Commit 5c01c0f

Browse files
prash-middixit14
authored andcommitted
1 parent cad4dc8 commit 5c01c0f

36 files changed

+2588
-0
lines changed

docs/src/main/asciidoc/index.adoc

+2
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@ include::metrics.adoc[]
4747

4848
include::spanner.adoc[]
4949

50+
include::spanner-spring-data-r2dbc.adoc[]
51+
5052
include::datastore.adoc[]
5153

5254
include::firestore.adoc[]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
:spring-data-commons-ref: https://docs.spring.io/spring-data/data-commons/docs/current/reference/html
2+
3+
[#spring-data-cloud-spanner-r2dbc]
4+
== Cloud Spanner Spring Data R2DBC
5+
6+
The Spring Data R2DBC Dialect for Cloud Spanner enables the usage of https://github.com/spring-projects/spring-data-r2dbc[Spring Data R2DBC] with Cloud Spanner.
7+
8+
The goal of the Spring Data project is to create easy and consistent ways of using data access technologies from Spring Framework applications.
9+
10+
=== Setup
11+
12+
Maven coordinates, using <<getting-started.adoc#bill-of-materials, Spring Framework on Google Cloud BOM>>:
13+
14+
[source,xml]
15+
----
16+
<dependency>
17+
<groupId>com.google.cloud</groupId>
18+
<artifactId>spring-cloud-spanner-spring-data-r2dbc</artifactId>
19+
</dependency>
20+
----
21+
22+
Gradle coordinates:
23+
24+
[source,subs="normal"]
25+
----
26+
dependencies {
27+
implementation("com.google.cloud:spring-cloud-spanner-spring-data-r2dbc")
28+
}
29+
----
30+
=== Overview
31+
32+
Spring Data R2DBC allows you to use the convenient features of Spring Data in a reactive application.
33+
These features include:
34+
35+
* Spring configuration support using Java based `@Configuration` classes.
36+
* Annotation based mapping metadata.
37+
* Automatic implementation of Repository interfaces.
38+
* Support for Reactive Transactions.
39+
* Schema and data initialization utilities.
40+
41+
See the https://docs.spring.io/spring-data/r2dbc/docs/current/reference/html/[Spring Data R2DBC documentation] for more information on how to use Spring Data R2DBC.
42+
43+
=== Sample Application
44+
45+
We provide a https://github.com/GoogleCloudPlatform/spring-cloud-gcp/tree/main/spring-cloud-gcp-samples/spring-cloud-spanner-r2dbc-samples[sample application] which demonstrates using the Spring Data R2DBC framework with Cloud Spanner in https://docs.spring.io/spring-framework/reference/web/webflux.html[Spring WebFlux].

pom.xml

+2
Original file line numberDiff line numberDiff line change
@@ -339,6 +339,7 @@
339339
<module>spring-cloud-gcp-vision</module>
340340
<module>spring-cloud-gcp-kms</module>
341341
<module>spring-cloud-gcp-native-support</module>
342+
<module>spring-cloud-spanner-spring-data-r2dbc</module>
342343

343344
<!-- Docs and Samples -->
344345
<module>docs</module>
@@ -591,6 +592,7 @@
591592
<module>spring-cloud-gcp-security-firebase</module>
592593
<module>spring-cloud-gcp-vision</module>
593594
<module>spring-cloud-gcp-kms</module>
595+
<module>spring-cloud-spanner-spring-data-r2dbc</module>
594596
</modules>
595597
<build>
596598
<pluginManagement>

spring-cloud-gcp-dependencies/pom.xml

+12
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@
3434
<guava.version>31.1-jre</guava.version>
3535
<r2dbc-mysql-driver.version>0.9.3</r2dbc-mysql-driver.version>
3636
<r2dbc-postgres-driver.version>0.8.13.RELEASE</r2dbc-postgres-driver.version>
37+
<cloud-spanner-r2dbc.version>1.2.2</cloud-spanner-r2dbc.version>
3738
</properties>
3839

3940
<dependencyManagement>
@@ -249,6 +250,11 @@
249250
<artifactId>spring-cloud-gcp-starter-kms</artifactId>
250251
<version>${project.version}</version>
251252
</dependency>
253+
<dependency>
254+
<groupId>com.google.cloud</groupId>
255+
<artifactId>spring-cloud-spanner-spring-data-r2dbc</artifactId>
256+
<version>${project.version}</version>
257+
</dependency>
252258

253259
<!-- spring-cloud-gcp-starter-sql -->
254260
<dependency>
@@ -297,6 +303,12 @@
297303
<version>${r2dbc-postgres-driver.version}</version>
298304
</dependency>
299305

306+
<dependency>
307+
<groupId>com.google.cloud</groupId>
308+
<artifactId>cloud-spanner-r2dbc</artifactId>
309+
<version>${cloud-spanner-r2dbc.version}</version>
310+
</dependency>
311+
300312
<!--Google Cloud Libraries BOM -->
301313
<dependency>
302314
<groupId>com.google.cloud</groupId>

spring-cloud-gcp-samples/pom.xml

+1
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,7 @@
8484
<module>spring-cloud-gcp-kotlin-samples</module>
8585
<module>spring-cloud-gcp-metrics-sample</module>
8686
<module>spring-cloud-gcp-kms-sample</module>
87+
<module>spring-cloud-spanner-r2dbc-samples</module>
8788
</modules>
8889

8990
<profiles>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
# Cloud Spanner Spring Data R2DBC sample
2+
3+
This sample creates a table called `BOOK` on application startup, and deletes it prior to application shutdown.
4+
5+
## Running the Sample
6+
7+
image:http://gstatic.com/cloudssh/images/open-btn.svg[link=https://ssh.cloud.google.com/cloudshell/editor?cloudshell_git_repo=https%3A%2F%2Fgithub.com%2FGoogleCloudPlatform%2Fcloud-spanner-r2dbc&cloudshell_open_in_editor=cloud-spanner-r2dbc-samples/cloud-spanner-spring-data-r2dbc-sample/README.adoc]
8+
9+
10+
1. Run the sample from the command line, providing `spanner.instance`, `spanner.database` and `gcp.project` properties:
11+
12+
```
13+
mvn spring-boot:run -Dspring-boot.run.jvmArguments="-Dspanner.instance=[SPANNER-INSTANCE] -Dspanner.database=[SPANNER-DATABASE] -Dgcp.project=GCP-PROJECT"
14+
```
15+
16+
2. Visit http://localhost:8080/index.html
17+
18+
3. Try the different actions available
19+
20+
- Listing all books.
21+
- Adding a new book with only title.
22+
- Adding a new book with extra details (a `Map` field in `Book` entity) stored as a spanner JSON column.
23+
- Adding a new book with a review (a custom class field in `Book` entity) stored as a spanner JSON column
24+
- Searching for a book by its ID.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
5+
6+
<parent>
7+
<!-- Your own application should inherit from spring-boot-starter-parent -->
8+
<artifactId>spring-cloud-gcp-samples</artifactId>
9+
<groupId>com.google.cloud</groupId>
10+
<version>3.5.5-SNAPSHOT</version><!-- {x-version-update:spring-cloud-gcp:current} -->
11+
</parent>
12+
<modelVersion>4.0.0</modelVersion>
13+
14+
<artifactId>spring-cloud-spanner-r2dbc-samples</artifactId>
15+
<name>Spring Framework on Google Cloud Code Sample - Spanner-r2dbc</name>
16+
17+
18+
<dependencyManagement>
19+
<dependencies>
20+
<dependency>
21+
<groupId>com.google.cloud</groupId>
22+
<artifactId>spring-cloud-gcp-dependencies</artifactId>
23+
<version>${project.version}</version>
24+
<type>pom</type>
25+
<scope>import</scope>
26+
</dependency>
27+
</dependencies>
28+
</dependencyManagement>
29+
<dependencies>
30+
31+
<dependency>
32+
<groupId>com.google.cloud</groupId>
33+
<artifactId>spring-cloud-spanner-spring-data-r2dbc</artifactId>
34+
</dependency>
35+
36+
<dependency>
37+
<groupId>org.springframework.boot</groupId>
38+
<artifactId>spring-boot-starter-webflux</artifactId>
39+
</dependency>
40+
41+
<!-- Test dependencies -->
42+
<dependency>
43+
<groupId>org.springframework.boot</groupId>
44+
<artifactId>spring-boot-starter-test</artifactId>
45+
<scope>test</scope>
46+
</dependency>
47+
<dependency>
48+
<groupId>io.projectreactor</groupId>
49+
<artifactId>reactor-test</artifactId>
50+
<scope>test</scope>
51+
</dependency>
52+
</dependencies>
53+
54+
<build>
55+
<plugins>
56+
<plugin>
57+
<artifactId>maven-deploy-plugin</artifactId>
58+
<configuration>
59+
<skip>true</skip>
60+
</configuration>
61+
</plugin>
62+
</plugins>
63+
</build>
64+
65+
</project>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example;
18+
19+
import java.util.List;
20+
import java.util.Map;
21+
import java.util.UUID;
22+
import org.springframework.data.annotation.Id;
23+
import org.springframework.data.domain.Persistable;
24+
import org.springframework.data.relational.core.mapping.Column;
25+
import org.springframework.data.relational.core.mapping.Table;
26+
27+
/** Book entity. */
28+
@Table
29+
public class Book implements Persistable {
30+
31+
@Id
32+
@Column("ID")
33+
private String id;
34+
35+
@Column("TITLE")
36+
private String title;
37+
38+
@Column("EXTRADETAILS")
39+
private Map<String, String> extraDetails;
40+
41+
@Column("REVIEWS")
42+
private Review review;
43+
44+
@Column("CATEGORIES")
45+
private List<String> categories;
46+
47+
public Book(String title, Map<String, String> extraDetails, Review review) {
48+
this.id = UUID.randomUUID().toString();
49+
this.title = title;
50+
this.extraDetails = extraDetails;
51+
this.review = review;
52+
}
53+
54+
public String getId() {
55+
return id;
56+
}
57+
58+
@Override
59+
public boolean isNew() {
60+
return true;
61+
}
62+
63+
public String getTitle() {
64+
return this.title;
65+
}
66+
67+
public Map<String, String> getExtraDetails() {
68+
return extraDetails;
69+
}
70+
71+
public Review getReview() {
72+
return review;
73+
}
74+
75+
public List<String> getCategories() {
76+
return categories;
77+
}
78+
79+
public void setCategories(List<String> categories) {
80+
this.categories = categories;
81+
}
82+
83+
@Override
84+
public String toString() {
85+
return "Book{"
86+
+ "id='"
87+
+ id
88+
+ '\''
89+
+ ", title='"
90+
+ title
91+
+ '\''
92+
+ ", extraDetails="
93+
+ (extraDetails == null ? "" : extraDetails.toString())
94+
+ ", categories="
95+
+ (categories == null ? "" : categories)
96+
+ '}';
97+
}
98+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
/*
2+
* Copyright 2020 Google LLC
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* https://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
16+
17+
package com.example;
18+
19+
import org.springframework.data.repository.reactive.ReactiveCrudRepository;
20+
21+
/**
22+
* Spring Data repository for books.
23+
*
24+
* <p>Query derivation is not supported yet.
25+
*/
26+
interface BookRepository extends ReactiveCrudRepository<Book, String> {}

0 commit comments

Comments
 (0)