From 7c696ac1964f3943c65e187935f2b178d82b71ff Mon Sep 17 00:00:00 2001 From: Jens Schauder Date: Tue, 7 Nov 2023 12:39:58 +0100 Subject: [PATCH] Polishing. Update README files to reference all the examples for Spring Data JDBC. Also fix a typo in another README. See #675 --- README.adoc | 6 ++++++ jdbc/graalvm-native/README.adoc | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/README.adoc b/README.adoc index 1538137f7..969f5a743 100644 --- a/README.adoc +++ b/README.adoc @@ -23,8 +23,14 @@ Local Elasticsearch instance must be running to run the tests. == Spring Data JDBC * `basic` - Basic usage of Spring Data JDBC. +* `graalvm-native` - This example compiles a basic Spring Data JDBC application into a GraalVM native image. +* `howto` - A collection of projects to go with the https://spring.io/blog/2021/09/09/spring-data-jdbc-how-to-use-custom-id-generation[Spring Data JDBC - How to blog posts]. * `immutables` - Showing Spring Data JDBC usage with https://immutables.github.io/[Immutables] +* `jmolecules` - Demonstrates the interaction of jMolecules with Spring Data JDBC. +* `jooq` - Demonstrates how to use jOOQ and Spring Data JDBC together. +* `mybatis` - Demonstrate how to use MyBatis to generate SQL for Spring Data JDBC. +* `singlequeryloading` - Demonstrates how to enable Single Query Loading. == Spring Data JPA diff --git a/jdbc/graalvm-native/README.adoc b/jdbc/graalvm-native/README.adoc index be3f31b46..3aa10ed9b 100644 --- a/jdbc/graalvm-native/README.adoc +++ b/jdbc/graalvm-native/README.adoc @@ -1,6 +1,6 @@ == Spring Data JDBC - GraalVM native image -This example compiles a basic Spring Data JDBC appication into a GraalVM native image. +This example compiles a basic Spring Data JDBC application into a GraalVM native image. === Install GraalVM & native image tooling