Spring

@PathVariable

keepgoing 2023. 1. 30. 12:57
  • URL 변수 값 받아오기
@GetMapping("/posts/{postId}")
    public void get(@PathVariable Long postId){

    }

또는

@GetMapping("/posts/{postId}")
    public void get(@PathVariable(name="postId") Long id){

    }