I am about to write an application where I have to send JSON data using jQuery post and interpret the same in spring controller at the server side. I am facing so many issues in interpreting the data at the server side even after so many trails and errors. I have gone through so many posts in stackoverflow also but not able to found the right answer.
Is posting the data in JSON format to spring is preferred or not ? pls let me know.
Even if you post a link explaining how to handle the data at the server side it would be helpful.
JSON is a good format for passing data back and forth between client and server. Look into deserialization to get your well-formed JSON into an object(s) on the server.