@RequestMapping("/profile")
public class ProfileController {
@GetMapping("/{id}")
public ModelAndView profileById(@PathVariable String id) {
final ModelAndView model = new ModelAndView("profile");
/* do something */
return model;
}
}