java中怎样修改@GetMapping("/api/power/{plugName}",使得HTTP GET request to /api/power/plugName?begin=20220305113455AM
时间: 2023-12-09 08:06:06 浏览: 102
Springboot-serving-web-content:使用 gradle && maven 公开 REST API 的示例
可以将@GetMapping("/api/power/{plugName}")改为@GetMapping("/api/power/{plugName}", params = "begin"),这样就可以接收到名为begin的查询参数。同时,需要在方法中添加一个参数来接收begin参数,例如:
@GetMapping("/api/power/{plugName}")
public Object getPower(@PathVariable String plugName, @RequestParam String begin) {
// 处理请求,begin参数即为查询参数
}
这样,在HTTP GET请求到达/api/power/plugName时,如果带有名为begin的查询参数,就会被接收并传递给方法。
阅读全文