SpringBoot 获取Get请求参数方式
例如:http://localhost:8080/hello/john获取参数 :@GetMapping(“/hello”)public String hello(@PathVariable(“name”)String name)例如:http://localhost:8080/hello2?name=john&age=18获取参数:@GetMapping(“/hello2”)public String hello2(@RequestParam(“name”) String name,@Re
原创
2023-10-05 18:07:57 ·
498 阅读 ·
0 评论