Jippe Holwerda
03/30/2021, 7:49 PMEtagSupport filter doesn't create etag headers for streaming bodies, which makes sense, because calculating the etag hash requires reading the full body in memory.
However, in the ResourceLoadingHandler we know the resources are present on the filesystem, and a hash can be calculated easily. Some things to think about:
• resources can be present in a jar file
• ideally, an etag hash needs to be calculated only once per file
Any thoughts on this?