How to turn off caching on Firefox?

后端 未结 17 764
失恋的感觉
失恋的感觉 2020-11-28 00:26

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

17条回答
  •  無奈伤痛
    2020-11-28 01:10

    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 ?

提交回复
热议问题