這篇文章將為大家詳細(xì)講解有關(guān)怎么在SpringMVC中實現(xiàn)一個DispatcherServlet組件,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關(guān)知識有一定的了解。
為馬村等地區(qū)用戶提供了全套網(wǎng)頁設(shè)計制作服務(wù),及馬村網(wǎng)站建設(shè)行業(yè)解決方案。主營業(yè)務(wù)為網(wǎng)站設(shè)計、成都網(wǎng)站建設(shè)、馬村網(wǎng)站設(shè)計,以傳統(tǒng)方式定制建設(shè)網(wǎng)站,并提供域名空間備案等一條龍服務(wù),秉承以專業(yè)、用心的態(tài)度為用戶提供真誠的服務(wù)。我們深信只要達(dá)到每一位用戶的要求,就會得到認(rèn)可,從而選擇與我們長期合作。這樣,我們也可以走得更遠(yuǎn)!
一、WebApplicationContext的層次結(jié)構(gòu)
本來是想研究一下springMVC組件的,結(jié)果解決了以前的一個疑問。WebApplicationContext的層次結(jié)構(gòu)
下面是從官網(wǎng)copy的一份web.xml
ContextLoaderListener:初始化一個Root WebApplicationContext:SpringIOC初始化一些中間services+datasouces的Bean
DispatcherServlet:初始化一個Servlet WebApplicationContext:SpringIOC初始化前端controllers+view resovlers+HandleMapping的Bean
父子關(guān)系:Servlet WebApplicationContext.setParent(Root WebApplicationContext);子容器找不到就去父容器找。
org.springframework.web.context.ContextLoaderListener contextConfigLocation /WEB-INF/app-context.xml app org.springframework.web.servlet.DispatcherServlet contextConfigLocation 1 app /app/*
二、DispatcherServlet的組件
servlet.init()時初始化SpringIOC容器外,還有初始化了一部分SpringMVC組件
/* org.springframework.web.servlet.DispatcherServlet#initStrategies 認(rèn)識一下*/ protected void initStrategies(ApplicationContext context) { initMultipartResolver(context); initLocaleResolver(context); initThemeResolver(context); initHandlerMappings(context); initHandlerAdapters(context); initHandlerExceptionResolvers(context); initRequestToViewNameTranslator(context); initViewResolvers(context); initFlashMapManager(context); }
關(guān)于怎么在SpringMVC中實現(xiàn)一個DispatcherServlet組件就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,可以學(xué)到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。