AngularJS AJAX调用JAVA中的一个servlet

AngularJS AJAX调用JAVA中的一个servlet

问题描述:

我的项目类是包com.project.controller下和servlet类的名称是UpdateDatabaseController。 web.xml中的相应code是,

My class in the project is under a package com.project.controller and the name of the servlet class is UpdateDatabaseController. The corresponding code of the web.xml is,

<servlet>
    <servlet-name>UpdateDatabaseController</servlet-name>
    <servlet-class>com.project.controller.UpdateDatabaseController</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>UpdateDatabaseController</servlet-name>
    <url-pattern>/UpdateDB</url-pattern>
  </servlet-mapping>

在HTML页面中,我有一个按钮,被调用函数,updateDatabase()。和脚本的code是:

In the html page, I have a button that is calling a function, updateDatabase(). And the code of the script is:

$scope.updateDatabase = function(){
        $http.get('/UpdateDB').success(function(data) {
            alert("Controller hit");
        });
    };

每当我按下按钮,将显示在浏览器日志中的错误,即:
NetworkError:404未找​​到 - 的http://本地主机:8080 / updatedb的

我想这对我的点击按钮,servlet类的POST方法被调用。但错误被固定在浏览器中的日志。我无法来解决这种状况。

I want that on my button click, the POST method of the servlet class is invoked. But the error is fixed in the browser log. I am unable to solve this situation.

您在乌拉圭回合网址错过项目名本地主机:8080 /项目名/数据库更新

you miss ProjectName in ur URL localhost:8080/ProjectName/UpdateDB