dongxl123 opened a new issue #2090:
URL: https://github.com/apache/incubator-shenyu/issues/2090
### Is there an existing issue for this?
- [X] I have searched the existing issues
### Current Behavior
### dubbo method
`@ShenyuDubboClient(path = "/batchSaveAndNameAndId", desc =
"batchSaveAndNameAndId")
public DubboTest batchSaveAndNameAndId(List<DubboTest> list, String id,
String name) {
DubboTest test = new DubboTest();
test.setId(id);
test.setName("hello world shenyu alibaba dubbo param
batchSaveAndNameAndId :" + name + ":" +
dubboTestList.stream().map(DubboTest::getName).collect(Collectors.joining("-")));
return test;
}`
### request body1
{"k1":[{"id":"1","name":"n1"},{"id":"2","name":"n2"}],"k11":"1","k2":"xxx"}
this will request success
### request body2
{"id":"1","name":"xxx","list":[{"id":"1","name":"n1"},{"id":"2","name":"n2"}]}
this will request failed
### Expected Behavior
I want requestBody parameters match the dubbo method parameters by names,not
by order
### Steps To Reproduce
_No response_
### Environment
```markdown
ShenYu version(s):
```
### Debug logs
_No response_
### Anything else?
_No response_
--
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.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]