Skip to content Skip to sidebar Skip to footer

How To Resolve Ambiguous Match When Chaining Generated Jooq Classes

I have defined my models in JPA and am writing some queries for my application and I am using JOOQ generated classes to join all the tables together to check if the requested resou

Solution 1:

From your description, looks like BUCKET and THINK_BUCKET being described as subtypes in the db level, are getting confused by the jooq generated classes.

A short term fix may be, to cut the hierarchical relation in the db level, regenerate and see what happens.

Solution 2:

This looks like a bug that has been fixed in jOOQ 3.14, see #8659, #10603

Post a Comment for "How To Resolve Ambiguous Match When Chaining Generated Jooq Classes"