The reason I want to avoid using jquery is that
1) I have to explicitly send the values of the of each attribute of a bean and then receive them inside the method in the controller.
I would be much simpler if I could just use something like this in the method signature in the method that gets called by the ajax request
If I can do something like this, then, i would get the values that the user entered in the form through the Bean mentioned in @ModelAttribute .
Whether you use jQuery or not isn't going to change how an HTTP request is made. jQuery creates a standard HTTP request just like any other means. What you need to do is to figure out exactly how you need the POST request to be formatted, and then you can use jQuery, or any other Ajax implementation, to make that request in the proper format.