You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@dubbo.apache.org by "gudegg (GitHub)" <gi...@apache.org> on 2019/01/05 14:17:21 UTC

[GitHub] [incubator-dubbo] gudegg commented on pull request #3038: fix telnet trace times is always 1

```java
@Data
public class User1 implements Serializable {
    private static final long serialVersionUID = -4729079781904156102L;
    private String name;
}
```
```java
@Data
public class User2 implements Serializable {
    private static final long serialVersionUID = -2112637973209566052L;
    private String name;
}
```
```java
public interface XXXService{
String hello(User1 user);
String hello(User2 user);

}
```
May find not the correct overload method; I think  must **class** param when the method is overloaded.

[ Full content available at: https://github.com/apache/incubator-dubbo/pull/3038 ]
This message was relayed via gitbox.apache.org for notifications@dubbo.apache.org