I am using 2nd level cache and query cache. May I know how to programmatically clear all caches ?
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);