gpt4 book ai didi

java - 演示简单的Ajax和Servlet实现失败

转载 作者:行者123 更新时间:2023-12-01 14:16:14 24 4
gpt4 key购买 nike

我正在尝试演示简单的 Ajax/Servlet 请求。为此,我在 eclipse 中创建了一个新的动态 Web 项目,并添加了一个简单的 Servlet 来接受请求并将其呈现给 UI。我已将 Servlet 详细信息包含在 web.xml 中。我使用 Tomcat 作为我的服务器。还没有构建脚本(我觉得此时不需要)

Servlet 代码:

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>

我的项目结构:enter image description here

我的 HTML:

enter image description here

我在 Fire bug 中收到错误消息

"NetworkError: 404 Not Found - http://localhost:8080/jirarequest?OK"

我在浏览器中使用的 URL 是 http://localhost:8080/Jira-Synchronization/index.html。我已经仔细检查了所有类型的拼写错误。我通过设置断点进行调试,但调试器从未命中我的 Servelt。我不知道出了什么问题? URL 错误或接线错误或缺少某些设置方式?

最佳答案

一些信息:

  • 404 错误意味着 Tomcat 没有任何文件或 Servlet 或任何公开的内容以在该 URL 路径上提供服务。

  • 500 错误意味着 Tomcat 在该 URL 路径上公开了一个 servlet(或 jsp),并且在尝试运行 java 代码时生成了意外异常。

我们知道需要改变的事情的集合:

  $.get('/jirarequest/whatever','OK',function(op){

<servlet>
<servlet-name>JiraSyncServlet</servlet-name>
<servlet-class>JiraSyncServlet</servlet-class>
</servlet>

另外,您可以通过键入此 URL 在浏览器中进行测试,该 URL 应返回 OK:

http://localhost:8080/Jira-Synchronization/jirarequest/whatever?OK

关于java - 演示简单的Ajax和Servlet实现失败,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18086247/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com