apache / dubbo-go-hessian2

caucho hessian2 implementation in Go for [apache/dubbo-go](https://github.com/apache/dubbo-go) which is compatible with [dubbo-hessian-lite](https://github.com/apache/dubbo-hessian-lite)
Apache License 2.0
209 stars 113 forks source link

java.lang.Long 是Java特定语言类型对象,对应的Go怎么传参 #344

Open mengccmumu opened 1 year ago

mengccmumu commented 1 year ago

java.lang.Long 是Java特定语言类型对象,对应的Go怎么传参,用的hessian2协议

tiltwind commented 1 year ago

@mengccmumu pls try *int64 to ref java.lang.Long

tiltwind commented 1 year ago

@mengccmumu pls try *int64 to ref java.lang.Long

*int64 doesn't work for java.lang.Long now. I will try to support it when having free time.

mengccmumu commented 1 year ago

期待中...

tiltwind commented 1 year ago

ref: https://github.com/apache/dubbo-go-hessian2/issues/349

tiltwind commented 1 year ago

@mengccmumu the java wrapper is supported now, you can upgrade it like https://github.com/apache/dubbo-go/pull/2222. Pls tell us whether it does work or not, thanks!