Spring MVC – Phần 3: Annotation(2) – Annotation @PathVariable, @RequestParam trong Spring MVC
Spring MVC – Phần 3: Annotation(2) – Annotation @PathVariable, @RequestParam trong Spring MVC 1. Annotation @PathVariable Annotation PathVariable được sử dụng để xử lý những URI động, có một hoặc nhiều paramter bên trong URI. Ví dụ: @RequestMapping(“/test1/{id}”) public String test1(@PathVariable(“id”) int id, Model model) { model.addAttribute(“id”, id); return “test1”; } @RequestMapping(“/test2/{id}/{name}”) public String test2(@PathVariable(“id”) Read more about Spring MVC – Phần 3: Annotation(2) – Annotation @PathVariable, @RequestParam trong Spring MVC[…]