예를 들어, 아래 url 에서 강조 된 부분이 @PathVariable로 처리해 줄 수 있다.
localhost:8080/article/2
velog.io/@jojo_/25
@RequestMapping("/articles")
@Controller
public class ArticleController {
@GetMapping("/{articleId}")
public String article(@PathVariable Long articleId, ModelMap map) {
map.addAttribute("article", "article");
map.addAttribute("articleComments", List.of());
return "articles/detail";
}
}