How to clear all Hibernate cache (ehcache) using Spring?

前端 未结 7 1400
长情又很酷
长情又很酷 2020-12-14 01:44

I am using 2nd level cache and query cache. May I know how to programmatically clear all caches ?

7条回答
  •  离开以前
    2020-12-14 02:12

    you can go with this also

    request.getSession().invalidate();      
            response.setHeader("Cache-Control", "no-cache, no-store, must-revalidate"); 
            response.setHeader("Pragma", "no-cache");
            response.setDateHeader("Expires", 0);
    

提交回复
热议问题