We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What happened:
Java调用Golang Provider时, Golang Provider返回的响应结构体中包含指针类型(*int64, 对应Java的java.lang.Long)字段, 客户端无法解析. 将Golang Provider响应体中的指针字段改为非指针类型, 或者改为*bool即可正常工作.
*int64
java.lang.Long
*bool
What you expected to happen:
Golang Provider响应结构体中包含的指针字段(*int32, *int64)等, 可以正确映射为Java中的包装类型.
*int32
How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?: dubbo-go版本: v3.1.0 dubbo-go-hessian2 v1.12.2 dubbo-spring-boot-starter: 3.2.5
The text was updated successfully, but these errors were encountered:
@yukinomiu is there demo code to simulate the issue?
Sorry, something went wrong.
@tiltwind I had posted the same issue in dubbo-go project: apache/dubbo-go#2410 you can find code details in this issue.
No branches or pull requests
What happened:
Java调用Golang Provider时, Golang Provider返回的响应结构体中包含指针类型(
*int64
, 对应Java的java.lang.Long
)字段, 客户端无法解析.将Golang Provider响应体中的指针字段改为非指针类型, 或者改为
*bool
即可正常工作.What you expected to happen:
Golang Provider响应结构体中包含的指针字段(
*int32
,*int64
)等, 可以正确映射为Java中的包装类型.How to reproduce it (as minimally and precisely as possible):
Anything else we need to know?:
dubbo-go版本: v3.1.0
dubbo-go-hessian2 v1.12.2
dubbo-spring-boot-starter: 3.2.5
The text was updated successfully, but these errors were encountered: