Я создал форму, и после ее отправки мне пришлось вернуться на индексную страницу. Но я получаю сообщение об ошибке:
Код: Выделить всё
****Whitelabel Error Page
This application has no explicit mapping for /error, so you are seeing this as a fallback.
Tue Oct 18 20:48:04 IST 2022**
There was an unexpected error (type=Internal Server Error, status=500).**
Код: Выделить всё
@PostMapping("/addStudent")
String addStudent(@ModelAttribute("student") Students student, Model model) {
studentsRepository.save(student);
return "index";
}
Подробнее здесь: https://stackoverflow.com/questions/741 ... he-details