Skip to content

Tag: quarkus

How to set a list as an Enum constant argument?

How do I pass a List type value in the constant parameter? In this case, this parameter is only for the PARS() constant. Update: I ended up not mentioning it in the post but it’s a list of object and not a string. Answer Enums are objects instantiated from a class, like other objects and classes. So if …

ContainerRequestFilter being ignored in my Quarkus extension

I want to implement a custom extension to be used in my services. One of the key features is to filter all the incoming requests: And it’s being declared in that way: I also tried adding the Jandex plugin in the runtime pom But it’s not being called. I saw a similar scenario here but the solution …