I am having issues sending a JQuery post to my server. I have narrowed the problem down to the data field not being set correctly in my javascript, which leads to an exception:
org.codehaus.jackson.map.JsonMappingException: Can not deserialize instance of com.myserver.rest.messages.dto.NewMessageDTO out of START_ARRAY token
The code that works, but not very clean:
$.ajax({
type: "POST",
url: "../resources/messages/",
data: '{"subject": "' + subject +
'", "message": "' + message +
'", "messageType": "' + type +
'", "employeeIDs": [' + employeeIDs +
'], "assignmentIDs": [' + assignmentIDs +']}',
contentType: "application/json",
success: successHandler,
error: defaultErrorHandler
});
Which renders to:
{"subject": "test", "message": "test", "messageType": "MESSAGE", "employeeIDs": [461,485], "assignmentIDs": [103]}
The code that does not work, but is cleaner:
$.ajax({
type: "POST",
url: "../resources/messages/",
data: {'subject': subject, 'message': message, 'messageType': type, 'employeeIDs[]': employeeIDs, 'assignmentIDs[]': assignmentIDs},
contentType: "application/json",
success: successHandler,
error: defaultErrorHandler
});
Which is rendering as application/x-www-form-urlencoded for some reason:
subject=test&message=test&messageType=MESSAGE&employeeIDs%5B%5D=461&employeeIDs%5B%5D=485&assignmentIDs%5B%5D=103
Any ideas what I am doing wrong here? Thanks in advance for any help
