-
**What happened**:
Java调用Golang Provider时, Golang Provider返回的响应结构体中包含指针类型(`*int64`, 对应Java的`java.lang.Long`)字段, 客户端无法解析.
将Golang Provider响应体中的指针字段改为非指针类型, 或者改为`*bool`即可正常工作.
**What you expected…
-
如果是为了调用前的参数,只需要 hessian 序列化就可以,还需要多做一次 base64?
如果是为了子调用匹配更快速的话,那么牺牲的岂不是内存?
还有 base64 之后如果对数据要做压缩传输的话,大多数压缩算法的压缩比对于 bas64 的字符会有明显的降低,这个算不算是一种牺牲?
-
#### Environment
``` text
spring-cloud:Hoxton.SR3
spring-boot:2.2.5.RELEASE
spring-cloud-alibaba-version:2.2.1.RELEASE
```
#### Configuration
##### provider
```yml
server:
p…
-
### Pre-check
- [X] I am sure that all the content I provide is in English.
### Search before asking
- [X] I had searched in the [issues](https://github.com/apache/dubbo/issues?q=is%3Aissue…
-
**What would you like to be added**:
**Why is this needed**:
在 java 中把这个结构序列化出来:
```java
Object[] as = new Object[1];
List l = new LinkedList();
l.add("123");
…
-
I'm trying to change my service's serialization protocol gracefully, so I want to implement a feature like this:
provider can support multi serialization protocols, and consumer assigns its seriali…
-
Dear
We are using Hessian-lite via Dubbo for our public APIs.
One of our APIs has a method to transfer data with InputStream as the input param:
`Response uploadFile(InputStream stream);`
…
-
### Which version of XXL-JOB do you using?
2.1.2
问题背景:适配go语言执行器,已完成2.3.0的适配,现在适配2.1.2。(代码链接:https://gitee.com/youbeiwuhuan/go-xxljob-executor/tree/dev2.1.2/)
问题描述:
点击后台执行一次任务,执行器端用gin+dubb…
-
### 问题描述
*简要描述您碰到的问题。*
类:
```java
public UserDubboService {
LoginAccountVo getAccountById(String id);
}
@Data
public LoginAccountVo {
private String id;
private LoginType type;
}
…
-
我有个一个javabean对象,有一个字段 private BigDecimal balance 提供了get set方法,在提供方法可以得到正确的值,在消费方接收的时候,该属性变成了0