我发现很多关于这个问题的问题,但我没有解决......我有这个方法:
@RequestMapping(value="/testInit")
public @ResponseBody Output test() throws Exception {
return new Output(true);
}
我有杰克逊库到类路径,进入 applicationContext 但我仍然得到这个 jquery 调用的 406 错误:
$.ajax({
url: "/testInit",
type: "get",
dataType: "json"
});