1

使用 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;       


    }

} 
4

1 回答 1

1

没有理由不能在相同的代码中使用客户端和服务器 Jersey,就像使用任何其他代码一样。但是,链接 HTTP 请求听起来可能不是最好的主意。你确定这是你想做的吗?

于 2012-06-19T23:14:05.133 回答