Avatar

Community Advisor

Hi @Gangadhar_Reddy1 

if you want to disable cache within JSSP pages in AC you can use the following:

        // Setting headers to disable cache
        response.addHeader("Pragma", "no-cache")
        response.addHeader("Cache-Control", "no-cache");
        response.addHeader("Expires", new Date().toGMTString());

Regards,

Milan