Hi guys I have a doubt I am trying to inject or only initialize filter request only when a property value is enabled.
When the value es false this filter not will be inject o intercept requests.
For example in Spring Framework you ca use @ConditionalOnProperty for this scenario but in Quarkus I am testing whit @IfBuildProperty and @LookupIfProperty but the results in my test not work like Spring features.
Properties of quarkus: enable.filter.request=true #false: not filter or initialize this filter
My reference is this: https://github.com/quarkusio/quarkus/issues/20099