use of com.publiccms.common.api.Cache in project PublicCMS-preview by sanluan.
the class CacheComponent method clear.
/**
*/
@PreDestroy
public void clear() {
for (Cache cache : cacheableList) {
cache.clear();
}
clearViewCache();
hqlService.clear();
}
Aggregations