Unable to find setter method for attribute: Error in spring boot
Try to use modelAttribute
instead of the (deprecated) commandName
in the form in your todo.jsp
. That should probably fix it.
commandName
is dead in Spring 5, so in todo.jsp:
<form:form method="post" commandName="todo">
Instead of commandName
you should use modelAttribute
like this:
<form:form method="post" modelAttribute="todo">