0

我搜索了很多,找不到解决方案。类似的线程也在我们的堆栈溢出中。但是没有用。所以我创建了一个新线程。

我的 JSP 是,

<boby>
<% System.out.println("request.getContextPath() : "+request.getContextPath()); %>
<h1>Spring_JsonTest Example</h1>
    <table>
        <tr><td colspan="2"><div id="error" class="error"></div></td></tr>
        <tr><td>Enter your name : </td><td> <input type="text" id="name"><br/></td></tr>
        <tr><td>Your Education : </td><td> <input type="text" id="education"><br/></td></tr>
        <tr><td colspan="2"><input type="button" value="Add Users" onclick="doAjaxPost()"><br/></td></tr>
        <tr><td colspan="2"><div id="info" class="success"></div></td></tr>
    </table>    
</body>

我的 Jquery 是,

function doAjaxPost() {  
      // get the form values  
      var name = $('#name').val();
      var education = $('#education').val();

      $.ajax({  
        type: "POST",  
        url: contexPath + "/AddUser.html",  
        data: "name=" + name + "&education=" + education,
        success: function(response){
          // we have the response 
          if(response.status == "SUCCESS"){
          userInfo = "<ol>";
          for( i =0 ; i < response.result.length ; i++){
              userInfo += "<br><li><b>Name</b> : " + response.result[i].name + 
              ";<b> Education</b> : " + response.result[i].education;
          }
          userInfo += "</ol>";
          $('#info').html("User has been added to the list successfully. " + userInfo);
          $('#name').val('');
              $('#education').val('');
              $('#error').hide('slow');
              $('#info').show('slow');
          }else{
          errorInfo = "";
          alert("Success response : "+response)
          for( i =0 ; i < response.result.length ; i++){
              errorInfo += "<br>" + (i + 1) +". " + response.result[i].code;
          }
          $('#error').html("Please correct following errors: " + errorInfo);
          $('#info').hide('slow');
          $('#error').show('slow');
          }       
        },  
        error: function(xhr, ajaxOptions, thrownError)
            alert("status :"+xhr.status+"\nthrownError : "+thrownError+"\nresponseText : "+xhr.responseText);
            alert('Error: ' +xhr.description);  
        } 
      });  
    }  

我的控制器是,

@Controller
public class UserController {
    private List<User> userList = new ArrayList<User>(); 

    @RequestMapping(value="/AddUser.html",method=RequestMethod.POST)
    public @ResponseBody JsonResponse addUser(@ModelAttribute(value="user") User user, BindingResult result ){
        System.out.println("Add user POST method");
        JsonResponse res = new JsonResponse();
        ValidationUtils.rejectIfEmpty(result, "name", "Name can not be empty.");
        ValidationUtils.rejectIfEmpty(result, "education", "Education not be empty");
        if(!result.hasErrors()){
            userList.add(user);
            res.setStatus("SUCCESS");
            res.setResult(userList);
        }else{
            res.setStatus("FAIL");
            res.setResult(result.getAllErrors());
        }

        return res;
    }

}

我的 JsonResponse.java 是,

package com.tps.jsonTest.service;

public class JsonResponse {
    private String status = null;
    private Object result = null;
    public String getStatus() {
        return status;
    }
    public void setStatus(String status) {
        this.status = status;
    }
    public Object getResult() {
        return result;
    }
    public void setResult(Object result) {
        System.out.println("Result : "+result.toString());
        this.result = result;
    }

}

我的 User.java 是,

package com.tps.jsonTest.service;

public class User {

    private String name = null;
    private String education = null;

    public String getName() {
        return name;
    }
    public void setName(String name) {
        this.name = name;
    }
    public String getEducation() {
        return education;
    }
    public void setEducation(String education) {
        this.education = education;
    }

}

在我的控制台中,

Add user POST method
Name : Anand
Education : B.E
Result : [com.tps.jsonTest.service.User@df2940]

我使用的 Jar 文件是,

commons-logging-1.1.1.jar
jackson-core-asl-1.9.12.jar
jackson-mapper-asl-1.9.12.jar
log4j-1.2.9.jar
servlet-api-2.4.jar
spring-aop-3.2.2.RELEASE.jar
spring-beans-3.2.2.RELEASE.jar
spring-context-3.2.2.RELEASE.jar
spring-context-support-3.2.2.RELEASE.jar
spring-core-3.2.2.RELEASE.jar
spring-expression-3.2.2.RELEASE.jar
spring-web-3.2.2.RELEASE.jar
spring-webmvc-3.2.2.RELEASE.jar

在我的浏览器中,错误是,

在此处输入图像描述

我无法使用 jquery 解析对象,并且它在错误上移动。希望我们的堆栈用户能帮助我。

好的答案绝对值得赞赏。谢谢。

4

4 回答 4

3

这是 Spring 3.2.2 或 3.2.3 或 3.2.4 中的问题。我在 Spring 3.0.0 和 Spring 3.1.4 中尝试了相同的示例,它工作正常。所以更换弹簧罐并试一试。

问候马杜

于 2013-09-07T17:27:19.817 回答
2

我遇到过同样的问题。我正在使用带有 UrlBasedViewResolver 的 Spring 3.2。

对于所有 ajax 调用,它给出了 406。我尝试更改标题,所有上述解决方案的数据类型,但没有任何效果。然后我发现杰克逊罐子不见了。我添加了 2 个以下罐子,它开始对我很好。

jackson-core-asl-1.9.4.jar jackson-mapper-asl-1.9.4.jar

于 2014-05-12T01:56:00.603 回答
1

您的问题是请求不接受响应的内容类型。

您的 ajax 调用未指定dataType,因此 jQuery 根据 url 扩展推断响应应该是 content type text/html,但是您的服务器不知道如何将 pojo 转换为 html!

解决方案应该是简单地添加dataType='json'到您的 ajax 调用中。

希望这可以帮助。

于 2013-04-20T19:38:43.173 回答
0

既然你做了一个POST,那么你的数据不应该是查询字符串格式。data而是为参数传递一个 json 对象。

data:{name: name, 
      education: education}
于 2013-04-11T03:32:14.153 回答