return;
}
if (!response.getHeaders().contains(HttpHeaders.Names.CONTENT_TYPE)) {
String contentType = context.get(MimeTypes.class).getContentType(file.getFileName().toString());
response.contentType(contentType);
}
try {
response.sendFile(attributes, file);
} catch (Exception e) {