You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public List<Date> EchoJavaDateList(List<Date> req) throws Exception {
List<Date> returnDates = new ArrayList<>();
for (Date date : req) {
returnDates.add(new java.sql.Timestamp(date.getTime()));
}
return returnDates;
}
As for dubbo-java <-> dubbo-java, returning subclass works. But for dubbo-go-hessian2, it just decode the returning contents as map[string]interface{}.
The text was updated successfully, but these errors were encountered:
codec-dubbo needs to support passing subclasses.
Example:
api.thrift:
dubbo-java:
As for dubbo-java <-> dubbo-java, returning subclass works. But for dubbo-go-hessian2, it just decode the returning contents as
map[string]interface{}
.The text was updated successfully, but these errors were encountered: