19 Nisan 2018 Perşembe

SpringMVC CacheControl Sınıfı

noStore metodu
Şöyle yaparız.
private CacheControl cacheControl = CacheControl.noStore().mustRevalidate();    

protected <T> ResponseEntity<TNRestResponse<T>> createEntity(TNRestResponse<T> res) {
  return ResponseEntity.ok().cacheControl(cacheControl).body(res);
}

Hiç yorum yok:

Yorum Gönder