SpringBoot参数访问

对于:

@RequestMapping("/practice/test/"){

 

  @GetMapping("{id}")

  public response test(@PathVariable Long id){

    System.out.println("id = " + id);

  }

}

 

访问的时候,URL为:127.0.0.1:8080/practice/test/1

即可在 MVC中接收到 id = 1

 

posted @ 2021-09-15 15:59  星海寻梦233  阅读(39)  评论(0编辑  收藏  举报