63isOK opened a new issue #277:
URL: https://github.com/apache/dubbo-go-hessian2/issues/277


   <!-- Please use this template while reporting a bug and provide as much info 
as possible. Not doing so may result in your bug not being addressed in a 
timely manner. Thanks!
   
   -->
   
   
   **What happened**:
   go客户端的参数为int,在go服务端被解析为int64
   
   ```go
        //      return "C"
        case int:
                return "J"
        case []int:
                return "[J"
        case int32:
                return "I"
        case []int32:
                return "[I"
        case int64:
                return "J"
   ```
   他们都被映射为J,但反向的却是错的.
   
   **What you expected to happen**:
   
   int被解析正确
   
   **How to reproduce it (as minimally and precisely as possible)**:
   
   **Anything else we need to know?**:
   测试环境 v2


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