Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.41 KB | None | 0 0
  1. <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
  2.  
  3. @GetMapping
  4. public ModelAndView showCheckList() {
  5. String text = "тестовый текст";
  6. System.out.println(text);
  7. ModelAndView modelAndView = new ModelAndView();
  8. modelAndView.addObject("test",text);
  9. modelAndView.setViewName("shop/CheckList");
  10. return modelAndView;
  11. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement