Hi,
In Jersey 1.0 we could create one WebResource from another as follows:
WebResource first = ...;
WebResource second = first.uri(newAddress);
Naturally, when a resource returns a link we want to construct a new
resource using the new link using the same Client. By removing support
for this very common use-case, you are forcing users to re-implement
this themselves over and over again in their code.
Why was this use-case removed in Jersey 2.0?
Thanks,
Gili