2023-03-09
處理器 映射器 bean
3 處理器映射器HandlerMapping
HandlerMapping接口負(fù)責(zé)根據(jù)request請(qǐng)求找到對(duì)應(yīng)的Handler處理器及Interceptor攔截器,并將它們封裝在HandlerExecutionChain對(duì)象中,返回給中央調(diào)度器。
其常用的實(shí)現(xiàn)類有兩種:
BeanNameUrlHandlerMapping
SimpleUrlHandlerMapping
3.1 BeanNameUrlHandlerMapping
BeanNameUrlHandlerMapping處理器映射器會(huì)根據(jù)請(qǐng)求的url與Spring容器中定義的處理器bean的name屬性值進(jìn)行匹配,從而在Spring容器中找到處理器bean實(shí)例。
<!-- 注冊(cè)處理器映射器 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
<!-- 注冊(cè)處理器 -->
<bean name="/hello" class="com.cy.controller.HelloController"></bean>
打開類的源碼,從BeanNameUrlHandlerMapping處理器映射器的方法中可以看出,對(duì)于處理器的bean的名稱,必須以“/”開頭,否則無法加入到urls數(shù)組中。
public class BeanNameUrlHandlerMapping extends AbstractDetectingUrlHandlerMapping {
/**
* 檢查給定bean的名稱和別名的URL,以“/”開頭。
*/
@Override
protected String[] determineUrlsForHandler(String beanName) {
List<String> urls = new ArrayList<>();
if (beanName.startsWith("/")) {
urls.add(beanName);
}
String[] aliases = obtainApplicationContext().getAliases(beanName);
for (String alias : aliases) {
if (alias.startsWith("/")) {
urls.add(alias);
}
}
return StringUtils.toStringArray(urls);
}
}
使用BeanNameUrlHandlerMapping處理器映射器有兩點(diǎn)明顯不足:
處理器bean的id為一個(gè)url請(qǐng)求路徑,而不是bean的名稱,有些不倫不類。
處理器bean的定義與請(qǐng)求url綁定在了一起,若出現(xiàn)多個(gè)url請(qǐng)求同一個(gè)處理器的情況,就需要在Spring容器中配置多個(gè)該處理器類的bean標(biāo)簽,這將導(dǎo)致容器會(huì)創(chuàng)建多個(gè)該處理器類實(shí)例。
<!-- 注冊(cè)處理器映射器 -->
<bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean>
<!-- 注冊(cè)處理器:為一個(gè)處理器綁定多個(gè)請(qǐng)求url -->
<bean name="/hello" class="com.cy.controller.HelloController"></bean>
<bean name="/world" class="com.cy.controller.HelloController"></bean>
3.2 SimpleUrlHandlerMapping
SimpleUrlHandlerMapping處理器映射器,不僅可以將url與處理器的定義分離,還可以對(duì)url進(jìn)行統(tǒng)一映射管理。
SimpleUrlHandlerMapping處理器映射器會(huì)根據(jù)請(qǐng)求的url與Spring容器中定義的處理器映射器子標(biāo)簽的key屬性進(jìn)行匹配。匹配上后,再將該key的value值與處理器bean的id值進(jìn)行匹配,從而在Spring容器中找到處理器bean。
<!-- 注冊(cè)處理器映射器方式2:SimpleUrlHandlerMapping實(shí)現(xiàn)類 -->
<bean class="org.springframework.web.servlet.handler.SimpleUrlHandlerMapping">
<!-- 方式1:通過mappings屬性為同一個(gè)處理器綁定多個(gè)url請(qǐng)求,二選一 -->
<property name="mappings">
<props>
<prop key="/hello.do">helloController</prop>
<prop key="/world.do">helloController</prop>
</props>
</property>
<!-- 方式2:通過mappings屬性為同一個(gè)處理器綁定多個(gè)url請(qǐng)求,二選一 -->
<property name="urlMap">
<map>
<entry key="/hello.action" value="helloController"/>
<entry key="/world.action" value="helloController"/>
</map>
</property>
</bean>
<!-- 注冊(cè)處理器 -->
<bean id="helloController" class="com.cy.controller.HelloController"></bean>
<!-- 注冊(cè)處理器映射器方式1:BeanNameUrlHandlerMapping實(shí)現(xiàn)類 -->
<!-- <bean class="org.springframework.web.servlet.handler.BeanNameUrlHandlerMapping"></bean> -->
<!-- <bean name="/hello" class="com.cy.controller.HelloController"></bean> -->
<!-- <bean name="/world" class="com.cy.controller.HelloController"></bean> -->
3.3 HandlerMapping源碼分析
HandlerMapping的調(diào)用過程見下:
org.springframework.web.servlet.DispatcherServlet(類):
-- void doService(HttpServletRequest request, HttpServletResponse response)
-- doDispatch(request, response)
-- void doDispatch(HttpServletRequest request, HttpServletResponse response)
-- getHandler(processedRequest, false)
-- HandlerExecutionChain getHandler(HttpServletRequest request, boolean cache)
-- getHandler(request)
-- HandlerExecutionChain getHandler(HttpServletRequest request)
-- hm.getHandler(request)
org.springframework.web.servlet.HandlerMapping(接口):
-- HandlerExecutionChain getHandler(HttpServletRequest request)
org.springframework.web.servlet.handler.AbstractHandlerMapping(抽象類 implements HandlerMapping):
-- HandlerExecutionChain getHandler(HttpServletRequest request)
-- getHandlerExecutionChain(handler, request)
-- HandlerExecutionChain getHandlerExecutionChain(Object handler, HttpServletRequest request)
開班時(shí)間:2021-04-12(深圳)
開班盛況開班時(shí)間:2021-05-17(北京)
開班盛況開班時(shí)間:2021-03-22(杭州)
開班盛況開班時(shí)間:2021-04-26(北京)
開班盛況開班時(shí)間:2021-05-10(北京)
開班盛況開班時(shí)間:2021-02-22(北京)
開班盛況開班時(shí)間:2021-07-12(北京)
預(yù)約報(bào)名開班時(shí)間:2020-09-21(上海)
開班盛況開班時(shí)間:2021-07-12(北京)
預(yù)約報(bào)名開班時(shí)間:2019-07-22(北京)
開班盛況Copyright 2011-2023 北京千鋒互聯(lián)科技有限公司 .All Right 京ICP備12003911號(hào)-5 京公網(wǎng)安備 11010802035720號(hào)