EhCache 안에 확인하는 법
1. EhCacheCacheManager를 @autowired로 불러온다. xml파일 안에 EhCacheCacheManager 빈 네임을 임의로 바꾸면 안된다. cacheManager로 유지.
List strArr = cacheManager.getCacheManager().getCache("stat").getKeys();
for (Object string : strArr) {
System.out.println("preHandle: "+string.toString());
}
지울때는
this.cacheManager.getCacheManager().getCache("stat").removeAll();
'코딩 > Spring' 카테고리의 다른 글
Hibernate 1 - 스프링 Spring data jpa로 하이버네이트 Hibernate 적용하기 (0) | 2015.12.15 |
---|---|
Spring Properties를 동적으로 불러오는 방법(PropertiesConfiguration) (0) | 2015.12.07 |
이니시스 incis 결제시스템 스프링 Spring 에 붙일 때 고려 사항 (0) | 2015.10.22 |
Spring Ehcache 쓸 때 유의할 점 (0) | 2015.10.09 |
이클립스에서 롬복 lombok 쓰는 법 (0) | 2015.09.06 |