Skip to content

Instantly share code, notes, and snippets.

@exoego
Created January 20, 2016 08:07
Show Gist options
  • Save exoego/245160a903db99fc1caf to your computer and use it in GitHub Desktop.
Save exoego/245160a903db99fc1caf to your computer and use it in GitHub Desktop.
@Controller
public class SearchController {
@Autowired
private SearchService searchService;
@RequestMapping("/search")
public String search(
@ModelAttribute("searchForm")
SearchForm searchForm,
Model model) {
model.addAttribute("results", searchService.search(searchForm));
return "search";
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment