개요

DispatcherServlet에 Client로부터 Http Request가 들어 오면 HandlerMapping은 요청처리를 담당할 Controller를 mapping한다. 
Spring MVC는 interface인 HandlerMapping의 구현 클래스도 가지고 있는데, 용도에 따라 여러 개의 HandlerMapping을 사용하는 것도 가능하다. 
빈 정의 파일에 HandlerMapping에 대한 정의가 없다면 Spring MVC는 기본(default) HandlerMapping을 사용한다. 
기본 HandlerMapping은 BeanNameUrlHandlerMapping이며, jdk1.5 이상의 실행환경이면, DefaultAnnotationHandlerMapping도 기본 HandlerMapping이다. 

설명

BeanNameUrlHandlerMapping, SimpleUrlHandlerMapping 등 주요 HandlerMapping 구현 클래스는 상위 추상 클래스인 AbstractHandlerMapping과 AbstractUrlHandlerMapping을 확장기 때문에 이 추상클래스들의 프로퍼티를 사용한다. 
주요 프로퍼티는 아래와 같다.

  1. @RequestMapping의 url 정보를 읽어 들여 해당 Controller와 url간의 매핑 작업.
  2. 설정된 Interceptor들에 대한 정보를 읽어 들임.

    1번 작업은 DefaultAnnotationHandlerMapping의 상위 클래스인 AbstractDetectingUrlHandlerMapping에서 이루어 지는데, 
    맵핑을 위한 url리스트를 가져오는 determineUrlsForHandler 메소드는 하위 클래스에서 구현하도록 abstract 선언 되어 있다. 

    public abstract class AbstractDetectingUrlHandlerMapping extends AbstractUrlHandlerMapping {

    ...

    protected void detectHandlers() throws BeansException {

    if (logger.isDebugEnabled()) {

    logger.debug("Looking for URL mappings in application context: " + getApplicationContext());

    }

    String[] beanNames = (this.detectHandlersInAncestorContexts ?

    BeanFactoryUtils.beanNamesForTypeIncludingAncestors(getApplicationContext(), Object.class) :

    getApplicationContext().getBeanNamesForType(Object.class));

     

    // Take any bean name that we can determine URLs for.

    for (int i = 0; i < beanNames.length; i++) {

    String beanName = beanNames[i];

    String[] urls = determineUrlsForHandler(beanName);

    if (!ObjectUtils.isEmpty(urls)) {

    // URL paths found: Let's consider it a handler.

    registerHandler(urls, beanName);

    }

    else {

    if (logger.isDebugEnabled()) {

    logger.debug("Rejected bean name '" + beanNames[i] + "': no URL paths identified");

    }

    }

    }

    }

    protected abstract String[] determineUrlsForHandler(String beanName);

    }

    DefaultAnnotationHandlerMapping의 determineUrlsForHandler 메소드는 @RequestMapping의 url 리스트를 전부 가져오기 때문에, 
    빈 설정 파일에 정의한 url 리스트만 가져오도록 SimpleUrlAnnotationHandlerMapping에서 determineUrlsForHandler 메소드를 구현 한다.

    package egovframework.rte.ptl.mvc.handler;

    ...

    public class SimpleUrlAnnotationHandlerMapping extends DefaultAnnotationHandlerMapping {

     

    //url리스트, 중복값을 허용하지 않음으로 Set 객체에 담는다.

    private Set<String> urls;

     

    public void setUrls(Set<String> urls) {

    this.urls = urls;

    }

     

    /**

    * @RequestMapping로 선언된 url중에 프로퍼티 urls에 정의된 url만 remapping해 return

    * url mapping시에는 PathMatcher를 사용하는데, 별도로 등록한 PathMatcher가 없다면 AntPathMatcher를 사용한다.

    * @param urlsArray - @RequestMapping로 선언된 url list

    * @return urlsArray중에 설정된 url을 필터링해서 return.

    */

    private String[] remappingUrls(String[] urlsArray){

     

    if(urlsArray==null){

    return null;

    }

     

    ArrayList<String> remappedUrls = new ArrayList<String>();

     

    for(Iterator<String> it = this.urls.iterator(); it.hasNext();){

    String urlPattern = (String) it.next();

    for(int i=0;i<urlsArray.length;i++){

    if(getPathMatcher().matchStart(urlPattern, urlsArray[i])){

    remappedUrls.add(urlsArray[i]);

    }

    }

    }

     

    return (String[]) remappedUrls.toArray(new String[remappedUrls.size()]);

    }

     

    /**

    * @RequestMapping로 선언된 url을 필터링하기 위해

    * org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping의

    * 메소드 protected String[] determineUrlsForHandler(String beanName)를 override.

    *

    * @param beanName - the name of the candidate bean

    * @return 빈에 해당하는 URL list

    */

    protected String[] determineUrlsForHandler(String beanName) {

    return remappingUrls(super.determineUrlsForHandler(beanName));

    }

    }

    인터셉터를 적용할 url들을 프로퍼티 urls에 선언하면 되며, Ant-style의 패턴 매칭이 지원된다.
    SimpleUrlAnnotationHandlerMapping은 선언된 url만을 Controller와 매핑처리한다.
    따라서, 아래와 같이 선언된 DefaultAnnotationHandlerMapping와 같이 선언되어야 하며, 우선순위는 SimpleUrlAnnotationHandlerMapping이 높아야 한다.

     

    <bean id="selectAnnotaionMapper" class="egovframework.rte.ptl.mvc.handler.SimpleUrlAnnotationHandlerMapping" p:order="1">

    <property name="interceptors">

    <list>

    <ref local="authenticInterceptor"/>

    </list>

    </property>

    <property name="urls">

    <set>

    <value>/*Employee.do</value>

    <value>/employeeList.do</value>

    </set>

    </property>

    </bean>

     

    <bean id="annotationMapper" class="org.springframework.web.servlet.mvc.annotation.DefaultAnnotationHandlerMapping" p:order="2"/>

     

    <bean id="authenticInterceptor" class="com.easycompany.interceptor.AuthenticInterceptor" />

Posted by wychoi
,