使用 Jersey,我希望能够有一个 GET 请求,这将导致服务器代码在另一个返回 json 对象的资源上对自身发出 HTTP 请求。我知道泽西岛有独立的客户端和服务器 api,有什么方法可以将两者结合起来吗?
@Path("/helloworld")
public class GetData {
@GET
public String getResource() throws IOException {
String result;
//Insert code to make an http request to localhost/someobject.json and store it in a variable
return result;
}
}