impl etags
All checks were successful
Deploy App / docker (ubuntu-latest, 2.44.0, 17, 3.8.5) (push) Successful in 1m56s

This commit is contained in:
Lee
2024-04-19 20:46:30 +01:00
parent 4dc263961d
commit d0cfd03ad9
16 changed files with 50 additions and 48 deletions

View File

@ -25,8 +25,11 @@ public class MojangController {
@ResponseBody
@GetMapping(value = "/status")
public ResponseEntity<CachedEndpointStatus> getStatus() {
CachedEndpointStatus status = mojangService.getMojangApiStatus();
return ResponseEntity.ok()
.cacheControl(CacheControl.maxAge(1, TimeUnit.MINUTES))
.body(mojangService.getMojangApiStatus());
.eTag(String.valueOf(status.hashCode()))
.body(status);
}
}