Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
jsp ページに画像をキャッシュしようとしています。
次のようにすべてをキャッシュできることを知っています。
httpResponse.setDateHeader("Expires", System.currentTimeMillis() + 604800000L);
ただし、有効期限キャッシュは画像のみに設定する必要があります。どうやってやるの?最も簡単な方法は何ですか?
ありがとう
servlet filter*.jpg、*.gif、*.png などで終わる URL をリッスンする を作成し、応答に expires ヘッダーを追加します。
servlet filter