使用Jersey,我希望能够有一个GET请求,这将导致服务器代码在另一个返回json对象的资源上对自己发出HTTP请求。我知道Jersey有客户端和服务器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;
}
}
答案 0 :(得分:1)
没有理由不能在同一代码中使用客户端和服务器Jersey,就像任何其他代码一样。但是,像声音这样的链接HTTP请求可能不是最好的主意。你确定这是你想要做的吗?