I have a custom quarkus extension from where I want to provide a resteasy request filter like below
@Provider
public class ReqFilter implements ContainerRequestFilter {
@Override
public void filter(ContainerRequestContext requestContext) throws IOException {
System.out.println(requestContext.getUriInfo().getPath());
}
}
I have this class in my runtime module, but it is not discovered or configured in reasteasy requests in integration-test project
Please let me know how to provide @Provider to resteasy
An example can be found here