KeRan213539 opened a new issue #9:
URL: https://github.com/apache/dubbo-spi-extensions/issues/9
例如 有如下结构的几个Pojo和提供者方法:
```
calss DemoBase<T, E>{
T p1
E p2
getP1()
getP2()
}
class DemoPojo1 {
String name;
getName()
}
class DemoPojo2 {
String age;
getAge()
}
// 下面这个是提供者方法
public String testDemo(DemoBase<DemoPojo1, DemoPojo2> demo) {
return demo.getP1().getName();
}
```
这种情况下,解析出来的文档,在 p1 和 p2 参数位置,只有个空JSON对象, 并且按照 DemoPojo 的结构写好JSON,调用测试报错
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]