lingxiaod commented on issue #4374:
URL: 
https://github.com/apache/servicecomb-java-chassis/issues/4374#issuecomment-2175408567

   > Can you show your example code to reproduce the problem?
   public class ClassA implements ProducerResponseMapperFactory {
   @OverRide
   public int getOrder() {
   return 5000;
   }
   
   @Override
   public boolean isMatch(Type producerType) {
       return true;
   }
   
   @Override
   public ProducerResponseMapper 
createResponseMapper(ResponseMapperFactorys<ProducerResponseMapper> factorys,
       Type producerType) {
       Type type = ((ParameterizedType) 
producerType).getActualTypeArguments()[0];
       ProducerResponseMapper responseMapper = 
factorys.createResponseMapper(type);
       return new ClassB(responseMapper);
   }
   }
   


-- 
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: commits-unsubscr...@servicecomb.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to