During development I have to \"clear cache\" in Firefox all the time in order to make it use the latest version of JavaScript files.
Is there some kind of setting (a
After 2 hours of browsing for various alternatives, this is something that worked for me.
My requirement was disabling caching of js and css files in my spring secured web application. But at the same time caching these files "within" a particular session.
Passing a unique id with every request is one of the advised approaches.
And this is what I did :- Instead of
I used
Any cons to the above approach are welcome. Security Issues ?