Exception of Binding form data to object
- by Captain Kidd
I'm practising Spring MVC.But fail to populate command object in Controller when I use spring standard tag. For example:
"form:input path="password""
But I perfectly do this with HTML standard tag. Like:
"input type="text" name="password""
I wonder the way how to use Spring tag binding data.
In addition, I think configuration and coding is…