Re: Writing a Wrapper for Jooq-Transaction to use Try-With-Resources

2024-03-26 Thread 'Bernd Huber' via jOOQ User Group
Hello Lukas, one point about the generic Map on all Scope Types, that you have mentioned... im currently constructing a new Jooq Configuration and DSLContext for every incoming Request / Thread in my blocking quarkus application, and had planned to remove this requirement and to share the

Re: Writing a Wrapper for Jooq-Transaction to use Try-With-Resources

2024-03-26 Thread 'Bernd Huber' via jOOQ User Group
Hello Lukas, yes, the FkExecuteListener i wrote is a "poor-mans-solution" :) thanks for mentioning all the points that Policies are covering. I will keep this in mind to mention in my team as soon as jooq is used in our product for some time (if i can convince my colleagues to use jooq

Re: Writing a Wrapper for Jooq-Transaction to use Try-With-Resources

2024-03-26 Thread Lukas Eder
Hi Bernd, On Mon, Mar 25, 2024 at 6:04 PM 'Bernd Huber' via jOOQ User Group < jooq-user@googlegroups.com> wrote: > Hello Lukas, > > the generic Map is indeed a good solution. > I have changed my code accordingly, and the result looks better! > I can use the default nested-transactions the way