From 63e78bfc682fe1b47ac4a8861212b068c1f24d36 Mon Sep 17 00:00:00 2001 From: zimmse <34753731+zimmse@users.noreply.github.com> Date: Tue, 30 Mar 2021 18:43:17 +0200 Subject: [PATCH] Fix small typo in dialect section --- src/main/asciidoc/jdbc.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/asciidoc/jdbc.adoc b/src/main/asciidoc/jdbc.adoc index 7f8403ecde..8ab8d513f1 100644 --- a/src/main/asciidoc/jdbc.adoc +++ b/src/main/asciidoc/jdbc.adoc @@ -169,7 +169,7 @@ There are a couple of things one might want to customize in this setup. === Dialects Spring Data JDBC uses implementations of the interface `Dialect` to encapsulate behavior that is specific to a database or its JDBC driver. -By default, the `AbstractJdbcConfiguration` tries to determine the database in use an register the correct `Dialect`. +By default, the `AbstractJdbcConfiguration` tries to determine the database in use and register the correct `Dialect`. This behavior can be changed by overwriting `jdbcDialect(NamedParameterJdbcOperations)`. If you use a database for which no dialect is available, then your application won’t startup. In that case, you’ll have to ask your vendor to provide a `Dialect` implementation. Alternatively, you can: