728x90
//WebApplicationContext context = ContextLoader.getCurrentWebApplicationContext();
Map<String,Service> beans = context.getBeansOfType(Service.class);
String key = "";
Service service= null;
Iterator< String >it = beans.keySet().iterator();
while( it.hasNext() ){
key = it.next();
service= beans.get(key);
if( service!= null ){
service.deleteAll("siteId");
}
}
728x90
'Spring' 카테고리의 다른 글
aop 에서 request, response 가져오기 (1) | 2015.10.26 |
---|---|
spring:eval 클래스 접근 (0) | 2015.10.26 |
@RequestMapping 핸들러 매핑 (0) | 2015.10.08 |
스프링(Spring)에서 no cache 설정하기 (0) | 2015.10.08 |
Custom arguments for @RequestMapping methods (0) | 2015.10.08 |