私はこの問題について多くの質問を見つけましたが、私は解決しませんでした...私はこの方法を持っています:
@RequestMapping(value="/testInit")
public @ResponseBody Output test() throws Exception {
return new Output(true);
}
そして、私はクラスパス、applicationContextへのジャクソンライブラリを持っていましたが、それでもこのjquery呼び出しで406エラーが発生します:
$.ajax({
url: "/testInit",
type: "get",
dataType: "json"
});