Spring Interceptor 사용 시 호출 Method 얻어오기
인터셉터의 preHandle, postHandle 메소드에 보면Object형 handler라는 이름의 인자가 있다. 이 인자는 RequestMapping으로 매핑된 하나의 메소드로 스프링 프레임워크에 의해org.springframework.web.method.HandlerMethod라는 클래스로 바인드 되어 전달되는 인자다.getMethod()를 호출하면 실제 java Reflection의 Method형 객체를 얻을수 있다. Custom Annotation을 사용한다면 Interceptor에서 위 handler 객체를 HandlerMethod method = ((HandlerMethod)handler);MyAnnotation anno = method.getMethodAnnotation(MyAnnotati..