Advertisement
Guest User

Untitled

a guest
Jan 18th, 2019
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. @RequestMapping(value = "/wynikiForm.html", method = RequestMethod.GET)
  2. public String showFormWyniki(Model model, @RequestParam(name = "id", defaultValue = "-1") Optional<Wybory> wyboryy) {
  3. Wyniki wyniki = new Wyniki();
  4. model.addAttribute("list", kandydatService.getAllCount());
  5.  
  6. wyniki.setWybory(wyboryy.get());
  7. model.addAttribute("wyniki", wyniki);
  8.  
  9. return "wynikiForm";
  10. }
  11.  
  12. @GetMapping(path = "/wynikiForm.html")
  13. public String home(Model model) {
  14. return "home";
  15. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement