I am new to Spring MVC. I have a form like this,
and a co
your ModelAttributes are not populated as you are not passing any params to server.Form data has to be posted to server
$.post('myaction.htm', $('#formid').serialize()) to send ajax post request.
$.post('myaction.htm', $('#formid').serialize())