欢迎来到天天文库
浏览记录
ID:18118478
大小:217.53 KB
页数:18页
时间:2018-09-14
《springmvc demo讲解》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库。
1、SpringMVC概要SpringMVC的总控:DispatcherServletweb.xml中的声明:contextConfigLocationclasspath:spring/app-*.xmlorg.springframework.web.context.ContextLoaderList
2、enerspringmvcorg.springframework.web.servlet.DispatcherServletcontextConfigLocationclasspath:spring/springmvc-s
3、ervlet.xml1springmvc/*1、ContextLoaderListener创建rootwebApplicationContext2、DispatcherServlet创建se
4、rvlet-specific的webApplicationContext,继承并覆盖root的定义。init-param可选,缺省查找/WEB-INF/{servletName}-servlet.xml。示例中该文件放在classpath中便于使用mavenresources插件进行环境变量替换。3、DispatcherServlet会默认初始化一些特定类型的bean,见/org/springframework/web/servlet/DispatcherServlet.properties中的说明。4、这些特
5、定类型的Bean,可在*-servlet.xml中声明,覆盖默认定义,或者声明多个不同实现,spring根据他们的order属性来做优先级处理。这些类构建了springmvc的整个处理流程的主体。见下图(图片来源《Spring3.x企业应用开发实战》){servletName}-servlet.xml配置,初始化默认的框架级别的bean。spring3.1mvc默认实现变化:HandlerMapping和HandlerAdapter,spring3.1的这两个接口
6、的默认实现:lorg.springframework.web.servlet.mvc.method.annotation.RequestMappingHandlerMappingCreatesRequestMappingInfoinstancesfromtypeandmethod-level@RequestMappingannotationsin@Controllerclasses.lorg.springframework.web.servlet.mvc.method.annotation.RequestMap
7、pingHandlerAdapterAnAbstractHandlerMethodAdapterthatsupportsHandlerMethodswiththesignature--methodargumentandreturntypes,definedin@RequestMapping.多了几个接口:HandlerMethodArgumentResolver/HandlerMethodReturnValueHandler,因此MVCXMLNamespace下的配置有些变化,可扩展点更多。暂时只需了解即可。<
8、beansxmlns="http://www.springframework.org/schema/beans"xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"xmlns:mvc="http://www.springframework.org/schema/mvc"xmlns:util="http://www.springfra
此文档下载收益归作者所有