控制浏览器不要缓存

//发头控制浏览器不要缓存
        response.setDateHeader("expries", -1);
        response.setHeader("Cache-Control", "no-cache");
        response.setHeader("Pragma", "no-cache");

原文地址:https://www.cnblogs.com/siashan/p/3913307.html