gpt4 book ai didi

java - 使用什么策略来确定 JSON 或 XML?

转载 作者:行者123 更新时间:2023-12-02 06:11:19 24 4
gpt4 key购买 nike

使用 Spring 时,当同时返回 JSON 和 XML 时,什么被认为是最佳实践?

假设我有一个方法:

@RequestMapping(value="items/{id}", method = RequestMethod.GET)
public Item getItem(@PathVariable, Long id) {
// Find and return item.
}

我如何以如下方式调用它:localhost:8080/app-name/items/1.xmllocalhost:8080/app-name/items/1.json 并以各自的格式获取数据?

最佳答案

最明显的解决方案:

@RequestMapping(value="items/{id}.{format}", method = RequestMethod.GET)
public Item getItem(@PathVariable, Long id, String format) {
if(format.equals("xml"))
...
}

关于java - 使用什么策略来确定 JSON 或 XML?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8988180/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com