what's the overhead to it? is it fine to pass the policy provider deriving 
the configuration everytime?


On Monday, March 24, 2025 at 9:15:36 AM UTC+1 [email protected] wrote:

> Just create your policies at runtime rather than at configuration time. 
>
> On Thu, Mar 20, 2025 at 9:40 AM 'Joaquin' via jOOQ User Group <
> [email protected]> wrote:
>
>> Hello everyone,
>> I created an inherited policy with jooq, but it seems to get evaluted 
>> during initialization with Spring Boot.
>>
>> this is my setup:
>>
>> @Bean
>> DefaultConfigurationCustomizer 
>> defaultConfigurationCustomizer(CustomPolicyProvider 
>> customPolicyProvider) {
>> return configuration -> {
>> configuration.setRecordListener(new JooqRecordListener());
>>
>> configuration.settings().setEmulateNestedRecordProjectionsUsingMultisetEmulation(
>> true);
>> configuration.setPolicyProvider(customPolicyProvider);
>> };
>> }
>>
>> the constructor of my policyProvider is done this way:
>>
>> public CustomPolicyProvider(AuthenticationFacade authenticationFacade) {
>> this.append(new CustomPolicy<>(TABLE, () ->  TABLE.child().ID.eq(
>> authenticationFacade.getAuthenticatedUser().userId())), ANOTHER_TABLE
>> .child()));
>> }
>>
>> what happens is that this fails because the authenticationFacade is 
>> actually null during startup which makes sense, this works properly when 
>> I'm not using an inherited policy.
>>
>> any ideas on how to get it working?
>>
>> Thanks
>>
>>
>> -- 
>> You received this message because you are subscribed to the Google Groups 
>> "jOOQ User Group" group.
>> To unsubscribe from this group and stop receiving emails from it, send an 
>> email to [email protected].
>> To view this discussion visit 
>> https://groups.google.com/d/msgid/jooq-user/293ed01d-6a53-4e73-8239-d5378f4305efn%40googlegroups.com
>>  
>> <https://groups.google.com/d/msgid/jooq-user/293ed01d-6a53-4e73-8239-d5378f4305efn%40googlegroups.com?utm_medium=email&utm_source=footer>
>> .
>>
>

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion visit 
https://groups.google.com/d/msgid/jooq-user/34fc7699-e1e5-4775-83ca-f68e9010d005n%40googlegroups.com.

Reply via email to