一.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
4.multipartResolver
表单上传文件,编码方式改成multipart/form-data
<form id="scForm action="wjsc.do" method="post" enctype="multipart/form-data"> 文件名称:
<input type="text" class="required" name="wjmc" size="25" /> <input type="file" name="wj" size="20" /> </form>
两个实现类
a.org.springframework.web.multipart.commons.CommonsMultipartResolver;
b.org.springframework.web.multipart.cos.CosMultipartResolver.