4. Вывод данных из базы данных
@Controller
public class StudentController {
private StudentService service;
@Autowired
public void setService(StudentService service) {
this.service = service;
}
@GetMapping("/")
public String index(Model model) {
model.addAttribute("students", service.getAllStudents());
return "index";
}
...
}


Last updated
Was this helpful?