I am trying to understand how to use JSON and in the process I\'m trying to get a JSON response from Struts2 action and display an alert for the response. For this I\'m usin
The problem in your Action class MeetingRecordAction, method updateAttendeesRecord is private, it should be public
public String updateAttendeesRecord() { meetingRecordService.updateAttendeesRecord(attendeesListMethod(), meeting_record); setMyMsg("Update Successful!"); return SUCCESS; }