VS
Size: a a a
VS
VS
RS
aa
@Controller
@RequestMapping("/profile/{ownerId}")
public class UserProfileController {
@GetMapping
public String profile(@PathVariable("ownerId") User user, Model model) {
model.addAttribute("owner", user);
return "profile";
}
}
EI
EI
RS
AE
EI
EI
C
AE
C
RS
RS
C
AE
AE
C
I