我正在制作简单的Spring MVC Web应用程序。在我的应用程序中,我想从前端向Spring控制器方法发送一个对象。但是当我这样做时,我得到了js错误
500 (Internal Server Error)
我试图在互联网上找到一个好的答案,但仍然找不到好的答案。
我的控制器方法是
@RequestMapping(value = "/add", method = RequestMethod.GET, consumes = { MediaType.APPLICATION_JSON_VALUE }, produces = { MediaType.APPLICATION_JSON_VALUE })
public @ResponseBody String addInventory(@RequestBody InventoryAddParam inventoryAddParam) {
log.info("addInventory");
ServiceRequest<InventoryAddParam> serviceRequest = convertAddParamtoServiceRequest(inventoryAddParam);
validate(inventoryAddParam);
inventoryService.addInventory(serviceRequest);
return "Inventory Added Succesfully";
}
inventoryAddParam是一个Serializable对象,只包含String参数。
我发送对象的JavaScript函数是
function sendDataTest() {
$.ajax({
url : "/GradleSpringMVC/inventory/add",
type : 'GET',
dataType : 'json',
data : JSON.stringify(populateTestObject()),
contentType : 'application/json',
mimeType : 'application/json'
}).done(function(data) {
// temGrid.addJSONData(data);
}).fail(function(error) {
// parseToPageAlerts(error.responseText);
}).always(function() {
// hideLoading()
});}
我正在创建addParam对象以作为ajax调用发送。 它在功能中创建
function populateTestObject(){
var addParam = new InventoryAddParam();
addParam.inventoryId = "INV001";
addParam.name = "ECG MACHINE";
addParam.price = "1000";
addParam.hospital = "Colombo";
addParam.userNote = "User Note";
return addParam;}
我在这里做错了吗?
有关错误的其他详细信息
Remote Address:127.0.0.1:8080
Request URL:http://localhost:8080/GradleSpringMVC/inventory/add
Request Method:POST
Status Code:500 Internal Server Error
标题
Connection:close
Content-Language:en
Content-Length:4939
Content-Type:text/html;charset=utf-8
Date:Wed, 21 Jan 2015 03:55:19 GMT
Server:Apache-Coyote/1.1
答案 0 :(得分:2)
你的spring方法使用 application / json ,错误信息显示你发送的内容不是有效的JSON。
在该行之后,我相信您的问题是$.extend(addParam)
,当设置为single argument it will extend a jQuery namespace with the object时,并且不会返回任何要进行字符串化的JSON对象(并且没有任何内容被发送到服务器)。可能的解决方案是删除 extend 函数,或添加另一个参数,在这种情况下将返回有效的JSON对象,例如
function sendData() {
var addParam = createAddParam();
$.ajax({
url : "/GradleSpringMVC/inventory/add",
type : 'GET',
dataType : 'json',
data : JSON.stringify(addParam),
contentType : 'application/json',
mimeType : 'application/json'
}).done(function(data) {
// temGrid.addJSONData(data);
}).fail(function(error) {
// parseToPageAlerts(error.responseText);
}).always(function() {
// hideLoading()
});}
答案 1 :(得分:1)
找到答案。刚刚将jackson的版本更改为1.9.12
'org.codehaus.jackson:jackson-mapper-asl:1.9.12'