Код: Выделить всё
@GetMapping("/")
public String home(Model model) {
List
products = productRepo.findAll();
model.addAttribute("products", products);
return "pages/home";
}
Подробнее здесь: https://stackoverflow.com/questions/797 ... pring-boot
Код: Выделить всё
@GetMapping("/")
public String home(Model model) {
List
products = productRepo.findAll();
model.addAttribute("products", products);
return "pages/home";
}