I'm trying to display the errors of a spring form with a redirection on the form page but nothing. But the errors appear when I do return formpage
. However this method does not display the data of the select fields
if (!result.hasErrors()) {
cylindreService.createCylindre(cylindre);
redirectAttrs.addFlashAttribute(
"success",
"Cylindre " + cylindre.getNumgma() + " à été ajouté avec succès"
);
return "redirect:/cylindre/listes";
}
return "redirect:/cylindre/add";