Spring MVC知识要点
一.web.xml
1.ContextLoaderListener
职责:加载顶层 WebApplicationContext.
WebApplicationContext主要用于提供应用所使用的所有中间层服务,包括数据源,DAO,Service,都在其中注册。默认配置文件--/WEB-INF/applicationContex.xml
当需要多个配置文件时,可以通过contextConfigLocation的配置参数来设置。
(可以参考org.springframework.web.context.ContextLoader类的javadoc来进行param-value值的设置)
<!-- 配置文件地址 --> <context-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/applicationContext*.xml</param-value> </context-param> <!-- Spring 启动监听 --> <listener> <listener-class>org.springframework.web.context.ContextLoaderListener</listener-class> </listener>
2.DispatcherServlet
Front Controller,负责Web请求的处理。使用一个外部化的配置文件XXX-serlvet.xml,该配置文件里定义了handlerMapping,viewResolver等。
<!-- SpringMVC 控制器 --> <servlet> <servlet-name>dispatcher</servlet-name> <servlet-class>org.springframework.web.servlet.DispatcherServlet</servlet-class> <init-param> <param-name>contextConfigLocation</param-name> <param-value>/WEB-INF/dispatch-servlet.xml</param-value> </init-param> <load-on-startup>1</load-on-startup> </servlet>
3.handlerMapping
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。