diff --git a/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java b/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java index d54164df32..d4b66edac7 100644 --- a/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java +++ b/jOOQ-codegen/src/main/java/org/jooq/codegen/JavaGenerator.java @@ -8026,7 +8026,7 @@ public class JavaGenerator extends AbstractGenerator { log.warn("Ambiguous key name", "The one-to-many key " + foreignKey + " generates an inbound key method name " + keyMethodName + " on table " + table - + " which conflicts with the previously generated key method name for key " + previousKey + + " which conflicts with the previously generated key method name for key " + previousKey + "." + " Use a custom generator strategy to disambiguate the method names for ForeignKeyDefinition, InverseForeignKeyDefinition, and/or ManyToManyKeyDefinition, or simply turn off the feature. More information here:\n" + " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy/\n" + " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy/\n" @@ -8105,6 +8105,7 @@ public class JavaGenerator extends AbstractGenerator { + " generates an inbound key method name " + keyMethodName + " on table " + table + " which conflicts with the previously generated key method name for key " + previousKey + "." + " Use a custom generator strategy to disambiguate the method names for ForeignKeyDefinition, InverseForeignKeyDefinition, and/or ManyToManyKeyDefinition, or simply turn off the feature. More information here:\n" + + " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-generatorstrategy/\n" + " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-matcherstrategy/\n" + " - https://www.jooq.org/doc/latest/manual/code-generation/codegen-advanced/codegen-config-generate/codegen-implicit-join-paths/" );