Quarkus Panache loads only one of two foreign key referenced entities
I’m working on implementing a quarkus backend for an already populated sports scoring database. I have three tables, disciplines, sport_categories, and competition_formats. Disciplines have foreign keys to the two other tables.
How can I use a custom connection-listener in my datasource using quarkus with panache?
I have a legacy JEE application that is deployed in JBOSS EAP that I am migrating to quarkus, currently the datasource of this application uses a custom connection-listener that is configured in the property
….
…
<connection-listener class-name=”my.package.CustomConnecionListener”…