Re: [weld-dev] Interceptors

2015-05-18 Thread Martin Kouba
Dne 17.5.2015 v 00:02 Emily Jiang napsal(a): Thank you Martin! I think if I specifiy a class level interceptor, service(ServiceRequest, ServletResponse) will be intercepted but not doGet(), as doGet will be called by .service(ServletRequest, ServletResponse) directly not via a proxy. Did I

Re: [weld-dev] Interceptors

2015-05-16 Thread Emily Jiang
Thank you Martin! I think if I specifiy a class level interceptor, service(ServiceRequest, ServletResponse) will be intercepted but not doGet(), as doGet will be called by .service(ServletRequest, ServletResponse) directly not via a proxy. Did I miss anything? On Fri, May 15, 2015 at 11:45 AM,

Re: [weld-dev] Interceptors

2015-05-15 Thread Martin Kouba
Dne 13.5.2015 v 00:27 Emily Jiang napsal(a): Thank you Jozef for the helpful info. I have another question on interceptor: EE7 spec states the JavaEE component classes, listed in Table EE.5-1, need to support interceptors. Take servlet for an example, which methods can be intercepted? As

Re: [weld-dev] Interceptors

2015-05-12 Thread Emily Jiang
Thank you Jozef for the helpful info. I have another question on interceptor: EE7 spec states the JavaEE component classes, listed in Table EE.5-1, need to support interceptors. Take servlet for an example, which methods can be intercepted? As the servlet classes are invoked by the container,