EickMing opened a new issue, #3549:
URL: https://github.com/apache/servicecomb-java-chassis/issues/3549
api:
`@RequestMapping(path = "/aaaa",
method = RequestMethod.POST,
produces = MediaType.APPLICATION_XML_VALUE)
public AAA aaaa(@RequestBody AAA aaa) {
return person;
}`
入参类:
`@Data
@XmlAccessorOrder(XmlAccessOrder.ALPHABETICAL)
@XmlRootElement(name = "aaa")
public class AAA {
@XmlElement(name = "bbb")
private String bbb;}`
postman请求正文:
`<aaa><bbb>sss</bbb></aaa>`
--
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]