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

ehcache, hibernate, java, orm

Solution

To clear the session cache use `session.clear()`

To clear the 2nd level cache use this code snippet

Problem

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

Original source