-
@PathVariableSpring 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){ }
'Spring' 카테고리의 다른 글
@RequestParam 생략 가능 (0) 2023.03.17 AnnotationProcessor (0) 2023.03.15 @BeforeEach (0) 2023.01.30 @SpringBootTest (0) 2023.01.30 @Autowired (0) 2023.01.30