I am trying to cache images on my jsp page.
I know that I can cache everything like this:
httpResponse.setDateHeader("Expires", System.currentTimeMillis() + 604800000L);
But I need to set expiration cache only for images. How can I do that? What is the easiest way?
Thanks