Spring RestController如何接受JSON和XML?

我有一个很棒的Spring控制器:

@RestController

@RequestMapping(value = "/widgets")

class WidgetController {

@RequestMapping(method = RequestMethod.POST)

WidgetResponse createWidget(@Valid @RequestBody Widget widget) {

// ...

}

}

在这里,我可以发布JSON消息,并创建我的小部件实例:

{

"name" : "Widget1",

"type" : "spinning",

"isFizz" : true

}

我希望该端点也接受和反序列化XML小部件,如下所示:

<widget name="Widget1">

<type>spinning</type>

<isFizz>false</isFizz>

</widget>

我试图找出:

  • 如何让端点接受 JSON和XML数据,并正确反序列化他们。和
  • 如何根据模式验证任何XML,例如 widgets.xsd

有任何想法吗?

回答:

consumes注解的参数@RequestMapping

@RequestMapping(value = "/widgets",consumes={MediaType.APPLICATION_JSON_VALUE,MediaType.APPLICATION_XML_VALUE})

WidgetResponse createWidget(@Valid @RequestBody Widget widget){

///

{

参数消耗一个MediaType数组

以上是 Spring RestController如何接受JSON和XML? 的全部内容, 来源链接: utcz.com/qa/432659.html

回到顶部