使用$ .ajax发送json对象不会进入servlet

时间:2014-06-10 21:20:29

标签: java jquery ajax json servlets

我试图将json Object whit Ajax(POST)发送到我的Servlet, Ajax似乎没有发送到servlet,意味着doPost函数不能运行。 在发送Ajax之后,我如何从中获取数据并打印到控制台。 感谢。

的index.jsp

<%@ page language="java" contentType="text/html; charset=windows-1255"
    pageEncoding="windows-1255"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1255">
<title>Insert title here</title>
</head>
<body>
<h2>Welcome please fill in the details, and then click Submit</h2>
<hr/>

<input value="Submit2" type="submit" onclick="submitform()">
<script type="text/javascript">
function submitform() {
      alert('sending json');

      $.ajax({
            type: 'POST',
            url: '/MyServlet',
            data: JSON.stringify({name:"hod"}),
            success: function(msg){
                alert('wow' + msg);
            }
        });

      alert('done json');

    }

</script>

</body>
</html>

的web.xml:

<?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" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" id="WebApp_ID" version="2.5">
  <display-name>WebApp-01</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>MyServlet</servlet-name>
    <servlet-class>com.srk.pkg.MyServlet</servlet-class>
  </servlet>
  <servlet-mapping>
    <servlet-name>MyServlet</servlet-name>
    <url-pattern>/MyServlet</url-pattern>
  </servlet-mapping>
</web-app>

MyServlet.java:

package com.srk.pkg;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import java.io.IOException;
/*
 * Servlet implementation class MyServlet
 */
public class MyServlet extends HttpServlet {
    private static final long serialVersionUID = 1L;


    public MyServlet() {
        super();
    }

    protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {

        System.out.println("doGet");
    }

    protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        System.out.println("doPost");
    // get the object and print to console
    }

}

1 个答案:

答案 0 :(得分:0)

实际上您需要做的是使用jquery或javascript将表单数据转换为javascript对象。如果您的数据是单个表单元素,例如然后使用var firstName = document.getElementById(&#39; firstName&#39;)。value()从表单元素中获取值。

如果表单数据是多个表单元素,则收集数据并以数组形式将其存储在javascript对象中。

您的HTML页面未附带<form>标记,因此DOM不会在您的提交中推送您的数据,因此不会向您的ajax调用发送数据。

在ajax调用中,您应该将Content-type标头设置为接受Json对象。我看到你正在对你的对象进行字符串化,这很好。

一旦您需要Json到java映射器来创建对象映射,您的javascript对象将被发布到服务器。如果您使用struts,则存在Json到java映射器。其他映射解决方案是GSON或Jackson。

您的服务器函数应该返回一个对象/字符串,无论您想要返回什么。您可以在变量msg中的成功回调函数中访问该数据,就像您在那里一样。如果您返回一个对象,例如学生可以打印console.log(msg.firstname)或打印返回的字符串。

我希望这对您有所帮助,并且它是该方法的指南以及您需要研究和实施的内容。