在eclipse IDE中找不到404 servlet错误

时间:2017-07-26 13:18:45

标签: eclipse jsp

我正在使用eclipse IDE上的动态Web项目。我的web.xml看起来像

<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://xmlns.jcp.org/xml/ns/javaee" xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" id="WebApp_ID" version="3.1">
  <display-name>TestTest</display-name>
  <welcome-file-list>
    <welcome-file>index.jsp</welcome-file>
  </welcome-file-list>
  <servlet>
    <servlet-name>NewServlet</servlet-name>
    <servlet-class>NewServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>NewServlet</servlet-name>
    <url-pattern>/NewServlet</url-pattern>
  </servlet-mapping>
</web-app>

这是我的javascript代码..      Example.js:

$.ajax('/NewServlet',params,function(result) {
                    var json = JSON.parse(result);
                    alert(json.data);
                });

当我创建NewServlet.java时,它没有自动映射到web.xml中。我只是手动输入它。我仍然收到此错误 404 not found

NewServlet.java文件路径是Java Resources-&gt; src-&gt;(DefaultPackage) - &gt; NewServlet.java

Example.js文件路径WebContent-&gt; Js-&gt; Example.js

1 个答案:

答案 0 :(得分:0)

AJAX调用存在问题。 它应该是这样的:  $.ajax('NewServlet',params,function(result) { var json = JSON.parse(result); alert(json.data); });

如果没有“/”,请查看here以获取对Servlet的AJAX调用。

希望这有帮助。