我在我的ubuntu上安装了jetty并将我的webapplication上传到了jetty的webapps文件夹中但是
当我尝试使用$ ajax
调用我的servlet时$("#signIn").click(function(){
$.ajax({
type: "POST",
url: "http://localhost:8090/myapp/myappmodule/getToken",
contentType: "text/html",
success: function(msg) {
window.open(msg);
}
});
});
但它给了我以下信息:
HTTP ERROR 404
Problem accessing /myapp/myappmodule/getToken. Reason:
NOT_FOUND