1
使用Jersey,我希望能夠有一個GET請求,這將導致服務器代碼在另一個返回json對象的資源上發出HTTP請求。我知道澤西島的客戶端和服務器端apis都是分開的,有什麼方法可以將兩者結合起來?如何使用java Jersey在資源內創建HTTP請求?
@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;
}
}