File tree Expand file tree Collapse file tree 10 files changed +37
-8
lines changed
main/java/example/springdata/r2dbc/basics
test/java/example/springdata/r2dbc/basics Expand file tree Collapse file tree 10 files changed +37
-8
lines changed Original file line number Diff line number Diff line change @@ -82,6 +82,10 @@ We have separate folders for the samples of individual modules:
8282
8383* ` basic ` - Basic usage of Spring Data JDBC.
8484
85+ ## Spring Data R2DBC
86+
87+ * ` example ` - Basic usage of Spring Data R2DBC.
88+
8589## Miscellaneous
8690
8791* ` bom ` - Example project how to use the Spring Data release train bom in non-Spring-Boot scenarios.
Original file line number Diff line number Diff line change 1919 <modules >
2020 <module >basics</module >
2121 <module >mybatis</module >
22- <module >r2dbc</module >
2322 <module >jooq</module >
2423 </modules >
2524
Original file line number Diff line number Diff line change 2626 <module >mongodb</module >
2727 <module >multi-store</module >
2828 <module >neo4j</module >
29+ <module >r2dbc</module >
2930 <module >rest</module >
3031 <module >redis</module >
3132 <module >solr</module >
File renamed without changes.
Original file line number Diff line number Diff line change 1+ <project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
2+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3+
4+ <modelVersion >4.0.0</modelVersion >
5+
6+ <parent >
7+ <groupId >org.springframework.data.examples</groupId >
8+ <artifactId >spring-data-r2dbc-examples</artifactId >
9+ <version >2.0.0.BUILD-SNAPSHOT</version >
10+ </parent >
11+
12+ <artifactId >spring-data-r2dbc-example</artifactId >
13+
14+ <name >Spring Data R2DBC - Example</name >
15+
16+
17+ </project >
File renamed without changes.
Original file line number Diff line number Diff line change 1717
1818import reactor .core .publisher .Flux ;
1919
20- import org .springframework .data .jdbc .repository .query .Query ;
20+ import org .springframework .data .r2dbc .repository .query .Query ;
2121import org .springframework .data .repository .reactive .ReactiveCrudRepository ;
2222
2323/**
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change 11<project xmlns =" http://maven.apache.org/POM/4.0.0" xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
22 xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
3-
43 <modelVersion >4.0.0</modelVersion >
54
5+ <artifactId >spring-data-r2dbc-examples</artifactId >
6+ <packaging >pom</packaging >
7+
68 <parent >
79 <groupId >org.springframework.data.examples</groupId >
8- <artifactId >spring-data-jdbc- examples</artifactId >
10+ <artifactId >spring-data-examples</artifactId >
911 <version >2.0.0.BUILD-SNAPSHOT</version >
1012 </parent >
1113
12- <artifactId >spring-data-r2dbc</artifactId >
14+ <name >Spring Data R2DBC - Examples</name >
15+ <description >Sample projects for Spring Data R2DBC</description >
1316
14- <name >Spring Data JDBC - Demonstrating reactive repositories with R2DBC</name >
17+ <inceptionYear >2018</inceptionYear >
18+
19+ <modules >
20+ <module >example</module >
21+ </modules >
1522
1623 <properties >
1724 <reactor-bom .version>Californium-RELEASE</reactor-bom .version>
2128
2229 <dependency >
2330 <groupId >org.springframework.data</groupId >
24- <artifactId >spring-data-jdbc </artifactId >
25- <version >1.0.0.r2dbc -SNAPSHOT</version >
31+ <artifactId >spring-data-r2dbc </artifactId >
32+ <version >1.0.0.BUILD -SNAPSHOT</version >
2633 </dependency >
2734
2835 <dependency >
6168 </dependency >
6269
6370 </dependencies >
71+
6472</project >
You can’t perform that action at this time.
0 commit comments