tom055 commented on issue #14838:
URL: https://github.com/apache/dubbo/issues/14838#issuecomment-2445695743

   I only want to obtain the parameters of the URL in the provider's 
interception. Currently, I am unable to obtain custom parameters 
(responsiveFilter) in the provider's interception, but I can obtain them in the 
consumer's interception. Is there a problem? I am looking forward to your reply 
very much
   ```
   @Activate(group = {CommonConstants.PROVIDER})
   public class SecurityFilter extends ListenableFilter {
   
     @Override
     public Result invoke(Invoker<?> invoker, Invocation invocation) throws 
RpcException {
       String responseFilter = url.getParameter("responseFilter");
       return invoker.invoke(invocation);
     }
   }
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to