我正在尝试演示简单的 Ajax/Servlet 请求。为此,我在 Eclipse 中创建了一个新的动态 Web 项目,并添加了一个简单的 Servlet 来接收请求并将其返回给 UI。我在 web.xml 中包含了我的 Servlet 详细信息。我使用 Tomcat 作为我的服务器。还没有构建脚本(我觉得此时不需要)
小服务程序代码:
response.setContentType("text/html");
PrintWriter out =response.getWriter();
String txt = request.getQueryString();
out.println(txt);
JS代码:
$(function(){
$.get('/jirarequest','OK',function(op){
$('#maindiv').appendTo(op);
});
});
html代码:
<?xml version="1.0" encoding="UTF-8"?>
<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://java.sun.com/xml/ns/javaee"
xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd"
id="WebApp_ID" version="3.0">
<display-name>Jira-Synchronization</display-name>
<welcome-file-list>
<welcome-file>index.html</welcome-file>
<welcome-file>index.htm</welcome-file>
<welcome-file>index.jsp</welcome-file>
<welcome-file>default.html</welcome-file>
<welcome-file>default.htm</welcome-file>
<welcome-file>default.jsp</welcome-file>
</welcome-file-list>
<servlet>
<servlet-name>JiraSyncServlet</servlet-name>
<servlet-class>src.JiraSyncServlet</servlet-class>
</servlet>
<servlet-mapping>
<servlet-name>JiraSyncServlet</servlet-name>
<url-pattern>/jirarequest/*</url-pattern>
</servlet-mapping>
我的项目结构:
我的 HTML:
我在 Fire bug 中收到错误消息
"NetworkError: 404 Not Found - http://localhost:8080/jirarequest?OK"
我在浏览器中使用的 URL 是http://localhost:8080/Jira-Synchronization/index.html
. 我已经仔细检查了所有类型的错字。我通过设置断点进行调试,但调试器从未击中我的Servelt。我不确定有什么问题?URL 错误或接线错误或缺少设置方式?