👩💻 Join our community of thousands of amazing developers!
If you have worked with Spring 2.5 annotation based web MVC framework you know that it allows you to freely design you controller method signatures: @RequestMapping(value = "users", method = GET) public String showUsers(Model model) { model.addAttribute("users", userManagement.getUsers()); return "users"; } As you can see we use a parameter of type Model that will we automatically get an instance handed by Spring. For a complete list of supported parameter and return types see Spring re...