我在我的 ubuntu 上安装了码头,并将我的 web 应用程序上传到码头的 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