Hello!
I have question about spring boot validation in Todo project.
public String addNewTodo(ModelMap modelMap, @Valid Todo todo, BindingResult bindingResult) {...}
If we change the position of the method parameters and put @Valid Todo todo before ModelMap modelMap, the validation not work correct and we don't see the error message in the form, but getting an exceptions in the browser. Why?
Thanks.