Add example using R2DBC Query by Example.

Closes #613.
This commit is contained in:
Mark Paluch
2021-04-12 15:58:34 +02:00
parent e5238de37c
commit 162ad7af2f
7 changed files with 302 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.springframework.data.examples</groupId>
<artifactId>spring-data-r2dbc-examples</artifactId>
<version>2.0.0.BUILD-SNAPSHOT</version>
</parent>
<artifactId>spring-data-r2dbc-query-by-example</artifactId>
<name>Spring Data R2DBC - Query by Example</name>
</project>