<div dir="ltr"><div class="gmail_default" style="font-size:small"><br>Resteasy would like to address the following scenario with a default interceptor<br>that is executed after classes defined in an @Interceptors stmt are executed.<br><br>    For example a customer provides an EJB with a defined @Interceptors stmt.<br>    <br>        @Path(&quot;/ejb&quot;)<br>        @Stateless<br>        @Interceptors ({PostConstructInjectionEJBInterceptor.class})<br>        public class PostConstructInjectionEJBResource {<br>           @Size(max=3)<br>           private String t = &quot;yz&quot;;<br><br>           @Path(&quot;get&quot;)<br>           @GET<br>           public String get() {<br>              return t;<br>           }<br><br>           public void setT(String t) {<br>              this.t = t;<br>           }<br>        }<br><br>Resteasy provides a CDI extension class, ResteasyCdiExtension.  This is where<br>I am trying to made the addition.  I&#39;ve reviewed the Weld docs and tried <br>wrapping the class with an @Interceptor both with and without @Priority; <br>using WeldAfterBeanDiscovery&#39;s addInterceptor method all without success.<br><br>Would you provide advise as to how best to address this?<br></div></div>