From 510fa7b0c00538c5292471b8764b4b66ff3deaf9 Mon Sep 17 00:00:00 2001 From: Vitalii Mahas Date: Wed, 27 Mar 2024 11:33:48 +0100 Subject: [PATCH] Fix typo ignoreing -> ignoring --- src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc b/src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc index e0c578e0a4..14b2a3c07b 100644 --- a/src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc +++ b/src/main/antora/modules/ROOT/pages/jdbc/mapping.adoc @@ -105,7 +105,7 @@ Also, the type of that aggregate is encoded in a type parameter. All references in an aggregate result in a foreign key relationship in the opposite direction in the database. By default, the name of the foreign key column is the table name of the referencing entity. -Alternatively you may choose to have them named by the entity name of the referencing entity ignoreing `@Table` annotations. +Alternatively you may choose to have them named by the entity name of the referencing entity ignoring `@Table` annotations. You activate this behaviour by calling `setForeignKeyNaming(ForeignKeyNaming.IGNORE_RENAMING)` on the `RelationalMappingContext`. For `List` and `Map` references an additional column is required for holding the list index or map key.