我已经制作了一个RESTful网络服务。
@POST
@Path("/test")
@Consumes({ MediaType.APPLICATION_JSON})
public String test(TestObject to)
{
System.out.println(to.getTestString());
return "SUCCESS";
}
我使用@XmlRootElement
创建了对象@XmlRootElement
public class TestObject implements Serializable {
private static final long serialVersionUID = 1L;
private String testString;
public TestObject() {}
public TestObject(String testString) {
this.testString = testString;
}
public String getTestString() {
return testString;
}
public void setTestString(String testString) {
this.testString = testString;
}
}
然后我尝试使用以下ajax调用
来调用它$.ajax({
url: 'http://localhost:8080/testPage/test/',
type: 'POST',
data: '{"testString":"test"}',
dataType: 'text',
contentType: "application/json; charset=utf-8",
success: function(jqXHR, textStatus, errorThrown){
alert('Success');
},
error: function(jqXHR, textStatus, errorThrown){
alert("jqXHR - " + jqXHR.statusText + "\n" +
"textStatus - " + textStatus + "\n" +
"errorThrown - " + errorThrown);
}
});
我最终只为textStatus得到'错误'。它似乎甚至没有达到我的测试服务。当我只传递text / plain时,我将获得GET工作甚至POST工作。当我试图传递一个json时,我无法让它工作。
使用POSTER! Firefox的附加组件我能够成功调用传递相同数据的服务。我添加了一些额外的日志记录来捕获服务端的请求标头,所以它似乎至少看到了请求,但它没有做任何事情。
以下是我从日志中获得的请求。最重要的一个是失败的ajax。最底层的是用POSTER成功的那个。 (不是真正的代码,但我没有看到任何更好的代码)
INFO: 1 * Server in-bound request
1 > OPTIONS http://localhost:8080/testPage/test
1 > Host: localhost:8080
1 > User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
1 > Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
1 > Accept-Language: en-us,en;q=0.5
1 > Accept-Encoding: gzip, deflate
1 > DNT: 1
1 > Connection: keep-alive
1 > Origin: http://localhost:8081
1 > Access-Control-Request-Method: POST
1 > Access-Control-Request-Headers: content-type
1 > Pragma: no-cache
1 > Cache-Control: no-cache
1 >
INFO: 2 * Server in-bound request
2 > POST http://localhost:8080/testPage/test
2 > Host: localhost:8080
2 > User-Agent: Mozilla/5.0 (Windows NT 5.1; rv:13.0) Gecko/20100101 Firefox/13.0.1
2 > Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
2 > Accept-Language: en-us,en;q=0.5
2 > Accept-Encoding: gzip, deflate
2 > DNT: 1
2 > Connection: keep-alive
2 > Content-Type: application/json; charset=utf-8
2 > Content-Length: 22
2 > Cookie: JSESSIONID=bvizai6k0277
2 > Pragma: no-cache
2 > Cache-Control: no-cache
2 >
{"testString": "test"}
从这似乎是没有将json传递给服务。我已经尝试过如上所述写出json,我尝试使用JSON.stringify创建它并没有成功。
在jquery ajax调用中尝试使用POST将json发送到RESTful Web服务时,是否有人知道我做错了什么?
答案 0 :(得分:0)
您是否在ajax电话中尝试dataType: 'json'
而不是dataType: 'text'
?