こんにちは、JSP ページへの ajax 呼び出しを試みています。これがJS関数の一部です。
<script>
$(function(){
function myAjaxCall() {
$.ajax({
type: "post",
url: "jsp/common/myJavascriptPage.jsp",
dataType: "text",
success:
function (result) {
alert("Got the result: " + result);
},
error: function (xhr,status,error) {
alert("Status: " + status);
alert("Error: " + error);
alert("xhr: " + xhr.readyState);
},
statusCode: {
404: function() {
alert("page not found");
}
}
});
}
});
</script>
上記の URL に JSP が存在するにもかかわらず、常にファイルが見つかりません。webapp ディレクトリの場所に相対的な JSP ファイルの場所を計算していることに注意してください。
通常の AJAX 呼び出し (jQuery なし) を使用してみましたが、同じエラーが発生しました。
jsp を特定できない理由を理解していただけますか?