我正在使用下面的类进行休息电话。我正在对已公开的API之一进行调用。 api返回true或false。我使用invocation.get()
时,似乎已缓存了响应。是使用此类/方法时的预期行为。如果是这样,我该如何解决?
javax.ws.rs.client.Invocation;
Invocation.Builder invocation = target.request(acceptType);
final CacheControl cacheControl = new CacheControl();
cacheControl.setNoCache(true);
cacheControl.setMaxAge(1);
cacheControl.setMustRevalidate(true);
cacheControl.setNoStore(true);
invocation.cacheControl(cacheControl);