Skip to content

Instantly share code, notes, and snippets.

@kembuco
Created December 19, 2011 04:01
Show Gist options
  • Save kembuco/1495319 to your computer and use it in GitHub Desktop.
Save kembuco/1495319 to your computer and use it in GitHub Desktop.
Controller
@Controller
public class HomeController {
@RequestMapping(value = "/home/{name}", method = RequestMethod.GET)
public String home(Model model, @PathVariable String name) {
model.addAttribute("name", name);
return "home";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment