728x90 Spring15 spring interface를 가지고 있는 class 목록 가져오기 //WebApplicationContext context = ContextLoader.getCurrentWebApplicationContext(); Map beans = context.getBeansOfType(Service.class); String key = ""; Service service= null; Iteratorit = beans.keySet().iterator(); while( it.hasNext() ){ key = it.next(); service= beans.get(key); if( service!= null ){ service.deleteAll("siteId"); } } 2015. 12. 2. aop 에서 request, response 가져오기 ServletWebRequest servletContainer = (ServletWebRequest)RequestContextHolder.getRequestAttributes(); HttpServletRequest request = servletContainer.getRequest(); HttpServletResponse response = servletContainer.getResponse(); 2015. 10. 26. spring:eval 클래스 접근 2015. 10. 26. @RequestMapping 핸들러 매핑 @RequestMapping 핸들러 매핑 @RequestMapping 핸들러 매핑 @MVC의 핸들러 매핑을 위해서는 DefaultAnnotationHandlerMapping이 필요하다. 디폴트 핸들러 매핑이므로 다른 핸들러 매핑을 등록하지 않았다면 기본으로 사용 가능. (다른 핸들러 매핑을 등록했다면 디폴트가 자동 적용되지 않으므로 빈 설정이 필요함) @RequestMapping 어노테이션의 엘리먼트 · String[] value():URL 패턴 - 디폴트 엘리먼트 - 요청의 URL 패턴을 지정해서 매핑 @RequestMapping("/hello") @RequestMapping({"/hello", "/hello/", "/hello.*"}) // path variable 사용 가능{} @RequestMap.. 2015. 10. 8. 이전 1 2 3 4 다음 728x90