我有几个问题。首先是我不知道如何使用javascript从webservice获取数据。第二个是当我尝试以JSON格式而不是XML获取数据时,我将始终获得一个xml。我真的是js,Jquery等新手,所以我开始研究它。
http://localhost:8080/UserRest/webresources/users?format=json // Even If format is JSON the result is always XML. Browser is Chrome
<users>
<user>
<age>40</age>
<firstName>Mark</firstName>
<freeText>Free</freeText>
<id>1</id>
<lastName>Lake</lastName>
<weight>200</weight>
</user>
<user>
<age>30</age>
<firstName>Sam</firstName>
<freeText>Words</freeText>
<id>2</id>
<lastName>Grass</lastName>
<weight>105</weight>
</user>
</users>
如果我尝试
http://localhost:8080/UserRest/webresources/users?format=XML
在Safari中,我得到了:
40MarkFree1Lake20030SamWords2Grass105
web服务:
@GET
@Override
@Produces({"application/xml", "application/json"})
public List<User> findAll() {
return super.findAll();
}
页:
function fetchUserFunction()
{
$.getJSON("http://localhost:8080/UserRest/webresources/users?format=json",
function(data) {
$.each(data, function(key, value) {
alert(key + "=" + value);
$('#maindiv').append('<li id="' + key.toString() + '">' + value.toString() + '</li>');
});
});
}
</script>
</head>
<body>
<h1>Users</h1>
<a href="http://localhost:8080/UserRest/webresources/users"> Test restful service</a>
<button onclick="fetchUserFunction()">Fetch Users</button>
<div id="maindiv"></div>
</body>
</html>
问题:
如何使用JSON或/和Jquery或仅使用纯js从JavaScript页面获取数据?有人可以为我的js函数实现基本案例并解释原因和内容。我的函数只返回[object Object],[object Object]?
如何使数据采用JSON格式,而不是XML?
从提取的数据构建表的最佳方法是什么?
我是否可以在webservice类中调用特定的metod,以及如何使用findAll()?
我正在使用JPA和JAAS身份验证。如何在我使用Web服务和客户端的情况下避免缓存问题可以在不同的服务器中?有时数据是旧的,因为Eclipselink正在从缓存中读取数据,而不是从数据库读取数据?
你今天过得怎么样?
这适合在一个问题中提出很多问题吗?
萨米
答案 0 :(得分:1)
@GET
@Produces({"application/xml", "application/json"})
public String doGetAsXmlOrJson() {
...
}
如果任何一个媒体,将调用doGetAsXmlOrJson方法 类型“application / xml”和“application / json”是可以接受的。如果两者 同样可以接受前者,因为它 首先发生。
在http://jersey.java.net/nonav/documentation/snapshot/jaxrs-resources.html
找到了这个要将JSON导入JavaSCript,您可以调用
res = JSON.parse(responseJson);
res将成为一个JS对象,您可以轻松地执行任何操作。