109110111112113114115116117118119
jdbcTemplate.execute(query); } private Ehcache getCache() { Ehcache cache = cacheManager.getCache("basiclookuptestcache"); cache.removeAll(); return cache; } @Test public void testAclsRetrievalWithDefaultBatchSize() throws Exception {
4950515253545556575859
cacheManager.shutdown(); } private Ehcache getCache() { Ehcache cache = cacheManager.getCache("ehcacheusercachetests"); cache.removeAll(); return cache; } private User getUser() {
171172173174175176177178179180181
} public void removeGroup(String groupKey) { Ehcache cache = cacheManager.getEhcache(groupKey); if(cache != null) { cache.removeAll(); } } public void clear() { cacheManager.removalAll();
175176177178179180181182183184185