gpt4 book ai didi

java - org.springframework.web.HttpMediaTypeNotAcceptableException : Could not find acceptable representation"error

转载 作者:行者123 更新时间:2023-12-01 15:19:30 32 4
gpt4 key购买 nike

我调用 JSON 的方式如下:

$(function() {
$("select#accountsubgroupid").change(function() {
alert('admin URL ----'+adminUrl);
$.getJSON("<%=request.getContextPath()%>/admin/jassg.htm?search=",{accountSubGroupId: $(this).val(), ajax: 'true'}, function(accountSubGroup){
alert('success---'+accountSubGroup.code);
});
});
});

它正在击中 Controller ,并根据 id 获取正确的对象。

但它给出了“org.springframework.web.HttpMediaTypeNotAcceptableException:找不到可接受的表示”错误。

我的 Controller 类:

@ResponseBody
@RequestMapping(value = "/jassg.htm")
public AccountSubGroup getJsonObject(@RequestParam Long accountSubGroupId, HttpSession session) throws Exception
{
//***My code for getting object ***
return accountSubGroup;
}

最佳答案

放置以下请求映射:

@RequestMapping(method = RequestMethod.GET, value = "/jassg.html", produces = "application/json")

关于java - org.springframework.web.HttpMediaTypeNotAcceptableException : Could not find acceptable representation"error,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11156497/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com