gpt4 book ai didi

java - 其余服务-以键值格式传递参数

转载 作者:行者123 更新时间:2023-12-01 12:18:18 24 4
gpt4 key购买 nike

这是我的 Controller :

@RestController
@RequestMapping("/warning/data")
public class EarlyWarningDataController {

@RequestMapping(value = "/get/{soeid}/{gfcid}/{expressioncode}/{fiscalYear}/{timeperiod}",
method = RequestMethod.GET)
public String getEarlyWarningData(@PathVariable("soeid") String soeId,
@PathVariable("gfcid") String[] gfcId,
@PathVariable("expressioncode") String expressionCode,
@PathVariable("fiscalYear") Long fiscalYear,
@PathVariable("timeperiod") String timePeriod) throws IOException {
sysout("");
}

当我点击网址

htpt://xyz:8080/EarlyWarning/warning/data/get/samplesoeid/1005771621/CAT_TOTAL_REV/2012/Annual 

效果很好。

但我想发送如下网址:

htpt://xyz:8080/EarlyWarning/warning/data/get/soeid=samplesoeid/gfcid=1005771621/expressioncode=CAT_TOTAL_REV/fiscalyear=2012/timeperiod=Annual

我需要对代码进行哪些更改?请帮忙。

最佳答案

您也许应该将这些参数转换为@RequestParam,而不是@PathVariable@RequestParam 本质上是查询参数(URL 中 ? 之后的参数,除以 &,例如 http://www.example.com?field1=value1&field2=value2&field3=value3.. 。)。

您可以在这里找到文档:http://docs.spring.io/spring/docs/current/javadoc-api/org/springframework/web/bind/annotation/RequestParam.html

这里讨论了@PathVariable@RequestParam之间的区别:@RequestParam vs @PathVariable

关于java - 其余服务-以键值格式传递参数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26859786/

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