<!-- servlet定義 -->
<servlet>
<servlet-name>court</servlet-name>
<servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class>
<load-on-startup>1</load-on-startup>
</servlet>
<servlet-mapping>
<servlet-name>court</servlet-name>
<url-pattern>/</url-pattern>
</servlet-mapping>
<!-- 配置contextConfigLocation初始化參數 -->
<context-param>
<param-name>contextConfigLocation</param-name>
<param-value>/WEB-INF/court-service.xml</param-value>
</context-param>
<!-- 配置ContextLoaderListerner -->
<listener>
<listener-class>org.springframework.web.context.ContextLoaderListener</listener-class>
</listener>
DispatcherServlet:前端處理器,接受的HTTP請求和轉發請求的類。 前端
court-servlet.xml:定義WebAppliactionContext上下文中的bean。 web
contextConfigLocation:指定Spring IoC容器須要讀取的定義了非web層的Bean(DAO/Service)的XML文件路徑。 spring
ContextLoaderListener:Spring MVC在Web容器中的啓動類,負責Spring IoC容器在Web上下文中的初始化。 app
Spring MVC啓動過程大體分爲兩個過程:一、ContextLoaderListener初始化,實例化IoC容器,並將此容器實例註冊到ServletContext中。二、DispatcherServlet初始化。 url