wuwen5 opened a new issue, #12773:
URL: https://github.com/apache/dubbo/issues/12773

   <!-- If you need to report a security issue please visit 
https://github.com/apache/dubbo/security/policy -->
   
   - [x] I have searched the [issues](https://github.com/apache/dubbo/issues) 
of this repository and believe that this is not a duplicate.
   
   ### Environment
   
   * Dubbo version: 3.1.x
   * Operating System version: mac os\Linux
   * Java version: 1.8
   
   ### Steps to reproduce this issue
   
   1. Server
   ```java
   public interface DemoApi {
   
       String methodA();
   
       String testCallbackMethod(String name,  ApiCallback callback);
       
       interface ApiCallback {
           String callbackMethod();
       }
   }
   
   @DubboService(methods = @Method(name="testCallbackMethod", 
                   arguments = {@Argument(index = 1, type = 
"DemoApi$ApiCallback", callback = true)}))
   public class DemoProvider implements DemoApi {
      
       @Override
       public String methodA() {
           return "ok";
       }
     
     @Override
       public String testCallbackMethod(String name, ApiCallback callback) {
           String s = callback.callbackMethod();
           return "ok";
       }
   }
   ```
   
   2. Consumer
   ```java
   @RestController
   public class TestController{
   
       @DubboReference
       DemoApi demo;
   
       private DemoApi.ApiCallback callback = new DemoApi.ApiCallback() {
           @Override
           public String callbackMethod() {
               System.out.println("callback:" + 
RpcContext.getContext().getAttachment("test"));
               return demo.methodA();
           }
       };
   
       @GetMapping("/testDubboCallback")
       public ResponseEntity<String> testDubboCallback() {
           RpcContext.getContext().setAttachment("test", "abc");
           return ResponseEntity.ok(demo.testCallbackMethod("param" ,callback));
       }
   
   }
   ```
   
   Pls. provide [GitHub address] to reproduce this issue.
   
   ### Expected Behavior
   
   <!-- What do you expect from the above steps?-->
   RpcContext passed normally, sky tracking is normal.
   
   ### Actual Behavior
   
   <!-- What actually happens? -->
   rpc context loss, the tracking has been broken.
   
   If there is an exception, please attach the exception trace:
   
   ```
   Just put your stack trace here!
   ```
   


-- 
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