Jersey ContainerRequestFilter not triggered

后端 未结 10 654
囚心锁ツ
囚心锁ツ 2020-12-05 06:34

I\'m trying to use a ContainerRequestFilter to enforce some authentication on a Tomcat based Jersey application. I followed this document. Problem : the filter

10条回答
  •  Happy的楠姐
    2020-12-05 07:23

    We were missing the below call in our ResourceConfig implementation class:

    register(CorrelationIdFilter.class);
    

提交回复
热议问题