基于asp.net MVC 应用程序的生命周期(详解)
首先我们知道http是一种无状态的请求,他的生命周期就是从客户端浏览器发出请求开始,到得到响应结束。那么mvc应用程序从发出请求到获得响应,都做了些什么呢?
本文我们会详细讨论mvc应用程序一个请求的生命周期,从一个控件到另一个控件是怎样被处理的。我们还会详细介绍一下整个请求的生命周期中,用到的相关组件。因为在平常的开发过程中,我们可能知道怎样去使用mvc框架来处理相关的请求,大部分的时候我们只是在controller和action方法之间做相关的处理,对于真正内在的运行机制可能不是很了解。其实当我们对内在机制有了一定的了解以后,会发现微软的mvc框架的扩展性很强,到处都留有扩展接口,让我们通过扩展能够自己定义自己所需要的处理机制,这也正是为什么mvc框架如此出名的原因。
当我最开始学习使用mvc的时候,困扰我的一个问题就是,一个请求的流程控制是怎样的呢?从view到controller再到action之间经历了什么?那个时候我还不清楚http module和http handler在处理一个请求中扮演什么样的角色,起什么样的作用呢。毕竟mvc是一个web开发框架,在整个请求处理过程中,肯定包含了http module和http handler。其实还有很多相关的组件包含在一个完整的mvc应用程序请求生命周期里,在整个请求过程中他们都扮演者非常重要的角色。尽管大部分时候我们都使用的是框架提供的默认的函数,但是如果我们了解了每个控件所扮演的角色,我们就可以轻松的扩展和使用我们自己实现的方法,就目前来说mvc是扩展性比较强的框架。
下面是本章节的主要内容:
httpapplication
httpmodule
httphandler
asp.net mvc运行机制
urlroutingmodule
routehandler
mvchandler
controllerfactory
controller
actioninvoker
actionresult
viewengine
httpapplication
我们都知道,在asp.net mvc框架出现之前,我们大部分开发所使用的框架都是asp.net webform.其实不管是mvc还是webform,在请求处理机制上,大部分是相同的。这涉及到iis对请求的处理,涉及的知识较多,我们就不做介绍了,下次有机会我写一篇专文。我们从httpapplication说起。先看看微软官方是怎么定义httpapplication的:
定义 asp.net 应用程序中的所有应用程序对象共有的方法、属性和事件。此类是用户在 global.asax 文件中所定义的应用程序的基类。
可能我翻译不是很准确,原文连接在这里:
微软官方文档中remark里有这么一段话:httpapplication 类的实例是在 asp.net 基础结构中创建的,而不是由用户直接创建的。使用 httpapplication 类的一个实例来处理其生存期中收到的众多请求。但是,它每次只能处理一个请求。这样,成员变量才可用于存储针对每个请求的数据。
意思就是说asp.net应用程序,不管是mvc还是webform,最终都会到达一个httpapplication类的实例。httpapplication是整个asp.net基础架构的核心,负责处理分发给他的请求。httpapplication处理请求的周期是一个复杂的过程,在整个过程中,不同阶段会触发相映的事件。我们可以注册相应的事件,将处理逻辑注入到httpapplication处理请求的某个阶段。在httpapplication这个类中定义了19个事件来处理到达httpapplication实例的请求。就是说不管mvc还是webform,最终都要经过这19个事件的处理,那么除了刚才说的mvc和webfrom在请求处理机制上大部分都是相同的,不同之处在哪呢?他们是从哪里开始分道扬镳的呢?我们猜想肯定就在这19个方法中。我们继续往下看。
我们来看看这19个事件:
应用程序按照以下顺序执行由 global.asax 文件中定义的模块或用户代码处理的事件:
事件名称: |
简单描述: |
beginrequest |
在 asp.net 响应请求时作为 http 执行管线链中的第一个事件发生 |
authenticaterequest |
当安全模块已建立用户标识时发生。注:authenticaterequest 事件发出信号表示配置的身份验证机制已对当前请求进行了身份验证。预订 authenticaterequest 事件可确保在处理附加的模块或事件处理程序之前对请求进行身份验证 |
postauthenticaterequest |
当安全模块已建立用户标识时发生。postauthenticaterequest 事件在 authenticaterequest 事件发生之后引发。预订 postauthenticaterequest 事件的功能可以访问由 postauthenticaterequest 处理的任何数据 |
authorizerequest |
当安全模块已验证用户授权时发生。authorizerequest 事件发出信号表示 asp.net 已对当前请求进行了授权。预订 authorizerequest 事件可确保在处理附加的模块或事件处理程序之前对请求进行身份验证和授权 |
postauthorizerequest |
在当前请求的用户已获授权时发生。postauthorizerequest 事件发出信号表示 asp.net 已对当前请求进行了授权。预订postauthorizerequest 事件可确保在处理附加的模块或处理程序之前对请求进行身份验证和授权 |
resolverequestcache |
当 asp.net 完成授权事件以使缓存模块从缓存中为请求提供服务时发生,从而跳过事件处理程序(例如某个页或 xml web services)的执行 |
postresolverequestcache |
在 asp.net 跳过当前事件处理程序的执行并允许缓存模块满足来自缓存的请求时发生。)在 postresolverequestcache 事件之后、postmaprequesthandler 事件之前创建一个事件处理程序(对应于请求 url 的页 |
postmaprequesthandler |
在 asp.net 已将当前请求映射到相应的事件处理程序时发生。 |
acquirerequeststate |
当 asp.net 获取与当前请求关联的当前状态(如会话状态)时发生。 |
postacquirerequeststate |
在已获得与当前请求关联的请求状态(例如会话状态)时发生。 |
prerequesthandlerexecute |
恰好在 asp.net 开始执行事件处理程序(例如,某页或某个 xml web services)前发生。 |
postrequesthandlerexecute |
在 asp.net 事件处理程序(例如,某页或某个 xml web service)执行完毕时发生。 |
releaserequeststate |
在 asp.net 执行完所有请求事件处理程序后发生。该事件将使状态模块保存当前状态数据。 |
postreleaserequeststate |
在 asp.net 已完成所有请求事件处理程序的执行并且请求状态数据已存储时发生。 |
updaterequestcache |
当 asp.net 执行完事件处理程序以使缓存模块存储将用于从缓存为后续请求提供服务的响应时发生。 |
postupdaterequestcache |
在 asp.net 完成缓存模块的更新并存储了用于从缓存中为后续请求提供服务的响应后,发生此事件。 |
logrequest |
在 asp.net 完成缓存模块的更新并存储了用于从缓存中为后续请求提供服务的响应后,发生此事件。 仅在 iis 7.0 处于集成模式并且 .net framework 至少为 3.0 版本的情况下才支持此事件 |
postlogrequest |
在 asp.net 处理完 logrequest 事件的所有事件处理程序后发生。 仅在 iis 7.0 处于集成模式并且 .net framework 至少为 3.0 版本的情况下才支持此事件。 |
endrequest |
在 asp.net 响应请求时作为 http 执行管线链中的最后一个事件发生。 在调用 completerequest 方法时始终引发 endrequest 事件。 |
对于一个asp.net应用程序来说,httpapplication派生与global.aspx(可以看看我们创建的应用程序都有一个global.aspx文件),我们可以在global.aspx文件中对httpapplication的请求进行定制即注入这19个事件中的某个事件进行逻辑处理操作。在global.aspx中我们按照"application_{event name}"这样的方法命名进行事件注册。
event name就是上面19个事件的名称。比如application_endrequest就用于处理application的endrequest事件。
httpmodule
asp.net拥有一个高度可扩展的引擎,并且能够处理对于不同资源类型的请求。这就是httpmodule。当一个请求转入asp.net管道时,最终负责处理请求的是与资源相匹配的httphandler对象,但是在httphandler进行处理之前,asp.net先会加载并初始化所有配置的httpmodule对象。httpmodule初始化的时候,会将一些回调事件注入到httpapplication相应的事件中。所有的httpmodule都实现了ihttpmodule接口,该接口有一个有一个init方法。
public interface ihttpmodule { // methods void dispose(); void init(httpapplication context); }
看到init方法呢接受一个httpapplication对象,有了这个对象就很容易注册httpapplication中19个事件中的某个事件了。这样当httpapplication对象执行到某个事件的时候自然就会出发。
httphandler
对于不同的资源类型的请求,asp.net会加载不同的httphandler来处理。所有的httphandler都实现了ihttphandler接口。
public interface ihttphandler { // methods void processrequest(httpcontext context); // properties bool isreusable { get; } }
我们看到该接口有一个方法processrequest,顾名思义这个方法就是主要用来处理请求的。所以说每一个请求最终分发到自己相应的httphandler来处理该请求。
asp.net mvc 运行机制
好了,上面说了那么多,其实都是给这里做铺垫呢。终于到正题了。先看看下面这张图,描述了mvc的主要经历的管道事件:
上图就是一个完整的mvc应用程序的一个http请求到响应的整个儿所经历的流程。从urlroutingmodule拦截请求到最终actionresult执行executeresult方法生成响应。
下面我们就来详细讲解一下这些过程都做了些什么。
urlroutingmodule
mvc应用程序的入口urlroutingmodule
首先发起一个请求,我们前面讲到asp.net 会加载一个httpmodule对象的初始化事件init,而所有的httpmodule对象都实现了ihttpmodule接口。我们看看urlroutingmodule的实现:
从上图中我们看到urlroutingmodule实现了接口ihttpmodule,当一个请求转入asp.net管道时,就会加载 urlroutingmodule对象的init()方法。
那么为什么偏偏是urlroutingmodule被加载初始化了呢?为什么不是别的httpmodule对象呢?带着这个疑问我们继续。
在asp.net mvc中,最核心的当属“路由系统”,而路由系统的核心则源于一个强大的system.web.routing.dll组件。system.web.routing.dll 不是mvc所特有的,但是mvc框架和它是密不可分的。
首先,我们要了解一下urlroutingmodule是如何起作用的。
(1)iis网站的配置可以分为两个块:全局 web.config 和本站 web.config。asp.net routing属于全局性的,所以它配置在全局web.config 中,我们可以在如下路径中找到:“c\windows\microsoft.net\framework\版本号\config\web.config“,我提取部分重要配置大家看一下:
<httpmodules> <add name="outputcache" type="system.web.caching.outputcachemodule" /> <add name="session" type="system.web.sessionstate.sessionstatemodule" /> <add name="windowsauthentication" type="system.web.security.windowsauthenticationmodule" /> <add name="formsauthentication" type="system.web.security.formsauthenticationmodule" /> <add name="passportauthentication" type="system.web.security.passportauthenticationmodule" /> <add name="rolemanager" type="system.web.security.rolemanagermodule" /> <add name="urlauthorization" type="system.web.security.urlauthorizationmodule" /> <add name="fileauthorization" type="system.web.security.fileauthorizationmodule" /> <add name="anonymousidentification" type="system.web.security.anonymousidentificationmodule" /> <add name="profile" type="system.web.profile.profilemodule" /> <add name="errorhandlermodule" type="system.web.mobile.errorhandlermodule, system.web.mobile, version=4.0.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a" /> <add name="servicemodel" type="system.servicemodel.activation.httpmodule, system.servicemodel.activation, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35" /> <add name="urlroutingmodule-4.0" type="system.web.routing.urlroutingmodule" /> <add name="scriptmodule-4.0" type="system.web.handlers.scriptmodule, system.web.extensions, version=4.0.0.0, culture=neutral, publickeytoken=31bf3856ad364e35"/> </httpmodules>
大家看到没有,我上面标红的那一行:<add name="urlroutingmodule-4.0" type="system.web.routing.urlroutingmodule" />
urlroutingmodule并不是mvc特有的,这是一个全局配置,就是说所有的asp.net请求都会到达这里,所以该module还不能最终决定是mvc还是webform请求。但是也是至关重要的地方。
(2)通过在全局web.config中注册 system.web.routing.urlroutingmodule,iis请求处理管道接到请求后,就会加载 urlroutingmodule类型的init()方法。其源码入下:
[typeforwardedfrom("system.web.routing, version=3.5.0.0, culture=neutral, publickeytoken=31bf3856ad364e35")] public class urlroutingmodule : ihttpmodule { // fields private static readonly object _contextkey = new object(); private static readonly object _requestdatakey = new object(); private routecollection _routecollection; // methods protected virtual void dispose() { } protected virtual void init(httpapplication application) { if (application.context.items[_contextkey] == null) { application.context.items[_contextkey] = _contextkey; application.postresolverequestcache += new eventhandler(this.onapplicationpostresolverequestcache); } } private void onapplicationpostresolverequestcache(object sender, eventargs e) { httpapplication application = (httpapplication) sender; httpcontextbase context = new httpcontextwrapper(application.context); this.postresolverequestcache(context); } [obsolete("this method is obsolete. override the init method to use the postmaprequesthandler event.")] public virtual void postmaprequesthandler(httpcontextbase context) { } public virtual void postresolverequestcache(httpcontextbase context) { routedata routedata = this.routecollection.getroutedata(context); if (routedata != null) { iroutehandler routehandler = routedata.routehandler; if (routehandler == null) { throw new invalidoperationexception(string.format(cultureinfo.currentculture, sr.getstring("urlroutingmodule_noroutehandler"), new object[0])); } if (!(routehandler is stoproutinghandler)) { requestcontext requestcontext = new requestcontext(context, routedata); context.request.requestcontext = requestcontext; ihttphandler httphandler = routehandler.gethttphandler(requestcontext); if (httphandler == null) { throw new invalidoperationexception(string.format(cultureinfo.currentuiculture, sr.getstring("urlroutingmodule_nohttphandler"), new object[] { routehandler.gettype() })); } if (httphandler is urlauthfailurehandler) { if (!formsauthenticationmodule.formsauthrequired) { throw new httpexception(0x191, sr.getstring("assess_denied_description3")); } urlauthorizationmodule.reporturlauthorizationfailure(httpcontext.current, this); } else { context.remaphandler(httphandler); } } } } [targetedpatchingoptout("performance critical to inline this type of method across ngen image boundaries")] void ihttpmodule.dispose() { this.dispose(); } [targetedpatchingoptout("performance critical to inline this type of method across ngen image boundaries")] void ihttpmodule.init(httpapplication application) { this.init(application); } // properties public routecollection routecollection { get { if (this._routecollection == null) { this._routecollection = routetable.routes; } return this._routecollection; } [targetedpatchingoptout("performance critical to inline this type of method across ngen image boundaries")] set { this._routecollection = value; } } }
看看上面的urlroutingmodule源码里面是怎么实现init方法的,init()方法里面我标注红色的地方:
application.postresolverequestcache += new eventhandler(this.onapplicationpostresolverequestcache);
这一步至关重要哈,看到没有,就是对我们在httpapplication那19个事件中的postresolverequestcache事件的注册。注册的方法是onapplicationpostresolverequestcache事件。也就是说httpapplication对象在执行到postresolverequestcache这个事件的时候,就会执行onapplicationpostresolverequestcache事件。决定是mvc机制处理请求的关键所在就是onapplicationpostresolverequestcache事件。
从源码中我们看出,onapplicationpostresolverequestcache事件执行的时候,最终执行了postresolverequestcache这个方法。最关键的地方呢就在这里了。
当请求到达urlroutingmodule的时候,urlroutingmodule取出请求中的controller、action等routedata信息,与路由表中的所有规则进行匹配,若匹配,把请求交给iroutehandler,即mvcroutehandler。我们可以看下urlroutingmodule的源码来看看,以下是几句核心的代码:
我们再分析一下这个方法的源码:
public virtual void postresolverequestcache(httpcontextbase context) { // 通过routecollection的静态方法getroutedata获取到封装路由信息的routedata实例 routedata routedata = this.routecollection.getroutedata(context); if (routedata != null) { // 再从routedata中获取mvcroutehandler iroutehandler routehandler = routedata.routehandler; ...... if (!(routehandler is stoproutinghandler)) { ...... // 调用 iroutehandler.gethttphandler(),获取的ihttphandler 类型实例,它是由 iroutehandler.gethttphandler获取的,这个得去mvc的源码里看 ihttphandler httphandler = routehandler.gethttphandler(requestcontext); ...... // 合适条件下,把之前将获取的ihttphandler 类型实例 映射到iis http处理管道中 context.remaphandler(httphandler); } } }
看到了吧,通过路由规则,返回的不为空,说明匹配正确,关于路由规则的匹配,说起来也不短,这里就不大幅介绍,有时间下次再开篇详解路由机制。匹配成功后,返回一个routedata类型的对象,routedata对象都有些什么属性呢?看看这行源码: iroutehandler routehandler = routedata.routehandler;或者看源码我们知道,routedate有一个routehandler属性。
那么urlrouting module是如何选择匹配规则的呢?
我们看看我们新建的mvc应用程序,在app_start文件夹下面有一个routeconfig.cs类,这个类的内容如下:
using system; using system.collections.generic; using system.linq; using system.web; using system.web.mvc; using system.web.routing; namespace apidemo { public class routeconfig { public static void registerroutes(routecollection routes) { routes.ignoreroute("{resource}.axd/{*pathinfo}"); routes.maproute( name: "default", url: "{controller}/{action}/{id}", defaults: new { controller = "home", action = "index", id = urlparameter.optional } ); } } }
我们在这个类里面,主要是给路由表添加路由规则。在看看上面的urlroutingmodule类,里面有一个routcollection属性,所以urlroutingmodule能够获取路由表中的所有规则,这里值得注意的是,路由规则的匹配是有顺序的,如果有多个规则都能够匹配,urlroutingmodule至选择第一个匹配的规则就返回,不再继续往下匹配了。相反的如果一个请求,没有匹配到任何路由,那么该请求就不会被处理。
这里返回的routedata里的routehandler就是mvcroutehandler。为什么呢?那我们继续往下看routehandler。
routehandler
生成mvchander
在上面路由匹配的过程中,与匹配路由相关联的mvcroutehandler ,mvcroutehandler 实现了iroutehandler 接口。mvcroutehandler 主要是用来获取对mvchandler的引用。mvchandler实现了ihttphandler接口。
mvcroutehandler的作用是用来生成实现ihttphandler接口的mvchandler。而我们前面说过最终处理请求的都是相对应的httphandler。那么处理mvc请求的自然就是这个mvchandler。所以这里返回mvcroutehandler至关重要:
那么,mvcroutehandler从何而来呢?众所周知,asp.net mvc项目启动是从global中的application_start()方法开始的,那就去看看它:
public class mvcapplication : system.web.httpapplication { protected void application_start() { routeconfig.registerroutes(routetable.routes); bundleconfig.registerbundles(bundletable.bundles); } } public class routeconfig { public static void registerroutes(routecollection routes) { routes.ignoreroute("{resource}.axd/{*pathinfo}"); system.web.mvc.routecollectionextensions routes.maproute( name: "default", url: "{controller}/{action}/{id}", defaults: new { controller = "home", action = "index", id = urlparameter.optional } ); } }
看看我上面标红的代码:这是路由注册,玄机就在这里。那我们去看看maproute源码就知道咯:
public static route maproute(this routecollection routes, string name, string url, object defaults, object constraints, string[] namespaces) { ...... route route = new route(url, new mvcroutehandler()) { defaults = new routevaluedictionary(defaults), constraints = new routevaluedictionary(constraints), datatokens = new routevaluedictionary() }; ...... return route; }
看看我们5-8行代码,在mvc应用程序里,在路由注册的时候,我们就已经给他一个默认的httproutehandler对象,就是 new mvcroutehandler().现在我们反推回去,我们mvc程序在路由注册的时候就已经确定了httproutehandler为mvcroutehandler,那么当我们在前面postresolverequestcache方法里,当我们的请求与路由匹配成功后,自然会返回的是mvcroutehandler。
好啦,mvcroutehandler生成了。那么mvcroutehandler能做什么呢?又做了什么呢?
再回头看看 postresolverequestcache方法,在成功获取到ihttproutehandler对象即mvcroutehandler之后,又做了下面这一个操作:
ihttphandler httphandler = routehandler.gethttphandler(requestcontext);
我们看看这个ihttphandler 的源码:
namespace system.web.routing { public interface iroutehandler { ihttphandler gethttphandler(requestcontext requestcontext); } }
有一个gethttphandler的方法,恰好就调用了这个方法。那我们看看mvcroutehandler是怎么实现这个gethttphandler的呢:
public class mvcroutehandler : iroutehandler { // fields private icontrollerfactory _controllerfactory; // methods public mvcroutehandler() { } public mvcroutehandler(icontrollerfactory controllerfactory) { this._controllerfactory = controllerfactory; } protected virtual ihttphandler gethttphandler(requestcontext requestcontext) { requestcontext.httpcontext.setsessionstatebehavior(this.getsessionstatebehavior(requestcontext)); return new mvchandler(requestcontext); } protected virtual sessionstatebehavior getsessionstatebehavior(requestcontext requestcontext) { string str = (string) requestcontext.routedata.values["controller"]; if (string.isnullorwhitespace(str)) { throw new invalidoperationexception(mvcresources.mvcroutehandler_routevalueshasnocontroller); } icontrollerfactory factory = this._controllerfactory ?? controllerbuilder.current.getcontrollerfactory(); return factory.getcontrollersessionbehavior(requestcontext, str); } ihttphandler iroutehandler.gethttphandler(requestcontext requestcontext) { return this.gethttphandler(requestcontext); } }
看第16-20行代码,这时候应该明白了吧。顺理成章的返回了mvchandler对象。记得我们前面说过,请求最终是被相对应的httphander对象处理的。mvchandler就是那个用来处理mvc请求的httphandler。mvcroutehandler把请求交给了mvchandler去做请求处理管道中后续事件的处理操作了。
下面我们就看看mvchandler做了些什么:
mvchandler
mvchandler就是最终对request进行处理。
mvchandler的定义如下:
我们可以看到mvchandler就是一个普通的http handler.我们知道一个http handler需要实现一个processrequest()的方法,这个方法就是处理request的核心。所以mvchandler实现了processrequest()方法。
processrequest主要功能:
(1)在asp.net mvc中,会调用mvchandler的processrequest()方法,此方法会激活具体请求的controller类对象,触发action方法,返回actionresult实例。
(2)如果actionresult是非viewresult,比如jsonresult, contentresult,这些内容将直接被输送到response响应流中,显示给客户端;如果是viewresult,就会进入下一个渲染视图环节。
(3)在渲染视图环节,viewengine找到需要被渲染的视图,view被加载成webviewpage<tmodel>类型,并渲染生成html,最终返回html。
processrequest()定义如下:
// copyright (c) microsoft open technologies, inc.<pre>// all rights reserved. see license.txt in the project root for license information. void ihttphandler.processrequest(httpcontext httpcontext) { processrequest(httpcontext); } protected virtual void processrequest(httpcontext httpcontext) { httpcontextbase ihttpcontext = new httpcontextwrapper(httpcontext); processrequest(ihttpcontext); } protected internal virtual void processrequest(httpcontextbase httpcontext) { securityutil.processinapplicationtrust(() => { icontroller controller; icontrollerfactory factory; processrequestinit(httpcontext, out controller, out factory); try { controller.execute(requestcontext); } finally { factory.releasecontroller(controller); } }); }
从上面的代码可以看出调用了一个processrequestinit()方法,定义如下:
private void processrequestinit(httpcontextbase httpcontext, out icontroller controller, out icontrollerfactory factory) { // if request validation has already been enabled, make it lazy. // this allows attributes like [httppost] (which looks // at request.form) to work correctly without triggering full validation. bool? isrequestvalidationenabled = validationutility.isvalidationenabled(httpcontext.current); if (isrequestvalidationenabled == true) { validationutility.enabledynamicvalidation(httpcontext.current); } addversionheader(httpcontext); removeoptionalroutingparameters(); // get the controller type string controllername = requestcontext.routedata.getrequiredstring("controller"); // instantiate the controller and call execute factory = controllerbuilder.getcontrollerfactory(); controller = factory.createcontroller(requestcontext, controllername); if (controller == null) { throw new invalidoperationexception( string.format( cultureinfo.currentculture, mvcresources.controllerbuilder_factoryreturnednull, factory.gettype(), controllername)); } }
在processrequestinit()方法中首先创建了controllerfactory()的对象 factory.然后controllerfactory创建了相关controller的实例.最终调用了controller的excute()方法。
好我们再来看看controllerfactory:
controllerfactory
主要是用来生成controller对象
controllerfactory实现了接口icontrollerfactory.
controller
到这里我们大概就知道了,mvchandler通过processrequest()方法最终创建了controller对象,这里我们都应该知道,controller里面包含很多的action方法,每一次请求至少一个action方法会被调用。为了明确的实现icontroller接口,框架里面有一个controllerbase的类已经实现了icontroller接口,其实我们自己的controller也可以不继承controllerbase,只要实现icontroller接口即可。
public abstract class controllerbase : icontroller { protected virtual void execute(requestcontext requestcontext) { if (requestcontext == null) { throw new argumentnullexception("requestcontext"); } if (requestcontext.httpcontext == null) { throw new argumentexception( mvcresources.controllerbase_cannotexecutewithnullhttpcontext, "requestcontext"); } verifyexecutecalledonce(); initialize(requestcontext); using (scopestorage.createtransientscope()) { executecore(); } } protected abstract void executecore(); // .......
controller对象实际上使用actioninvoker来调用action方法的,当controller对象被创建后,会执行controller对象的基类controllerbase类里面的excute方法。excute方法又调用了excutecore()方法。controller类里面实现了excutecore()方法。excutecore调用了actioninvoker的invokeraction方法来调用action方法。
actioninvoker
actioninvoker方法有很重要的责任来查找controller中的action方法并且调用。
actioninvoker是一个实现了iactioninvoker接口的对象:
bool invokeaction( controllercontext controllercontext, string actionname )
controller类里面暴露了一个actioninvoker 属性,会返回一个controlleractioninvoker 。actioninvoker通过createactioninvoker()方法来创建controlleractioninvoker对象。
public iactioninvoker actioninvoker { get { if (_actioninvoker == null) { _actioninvoker = createactioninvoker(); } return _actioninvoker; } set { _actioninvoker = value; } } protected virtual iactioninvoker createactioninvoker() { return new controlleractioninvoker(); }
我们看到createactioninvoker()是一个virtual方法,我们可以实现自己的actioninvoker.
actioninvoker类需要匹配controller中详细的action来执行,而这些详细的信息是由controllerdescriptor 提供的。controllerdescriptor 和actiondescriptor在actioninvoker中扮演重要的角色。这两个分别是对controler和action的详细描述。controllerdescriptor 描述了controller的相关信息比如name,action,type等。
actiondescriptor 描述了action相关的详情,比如name,controller,parameters,attributes和fiflters等。
actiondescriptor 中一个中要的方法就是findaction(),这个方法返回一个actiondescriptor 对象,所以actioninvoker知道该调用哪个action。
actionresult
到目前为止,我们看到了action方法被actioninvoker调用。所有的action方法有一个特性,就是返回一个actionresult类型的数据。
public abstract class actionresult { public abstract void executeresult(controllercontext context); }
executeresult()是一个抽象方法,所以不同的子类可以提供不同的executeresult()实现。
actionresult执行后响应输出到客户端。
viewengine
viewresult几乎是大部分应用程序的返回类型,主要通过viewengine引擎来展示view的。viewengine可能主要就是生成html元素的引擎。framwork提供了2种引擎,razor view engine 和web form view engine.如果你想自定义引擎,你可以创建一个引擎只要实现iviewengine接口即可。
iviewengine 有下面几个方法:
1、findpartialview :当controller需要返回一个partialview的时候,findpartialview方法 就会被调用。
2、findview
3、releaseview :主要用来有viewengine释放资源
viewresultbase 和viewresult是比较重要的两个类。viewresultbase 包含下面的实现代码:
if (view == null) { result = findview(context); //calls the viewresult's findview() method view = result.view; } viewcontext viewcontext = new viewcontext(context, view, viewdata, tempdata); view.render(viewcontext, context.httpcontext.response.output); protected abstract viewengineresult findview(controllercontext context); //this is implemented by //the viewresult
protected override viewengineresult findview(controllercontext context) { viewengineresult result = viewenginecollection.findview(context, viewname, mastername); if (result.view != null) { return result; } //rest of the code omitted }
当viewresult的方法executeresult被调用后,viewresultbase 的executeresult 方法被调用,然后viewresultbase 调用viewresult的findview 。紧接着viewresult 返回viewengineresult,之后viewengineresult调用render()方法来绘制html输出响应。
总结:如果我们理解了整个过程中发生了什么,哪些类和哪些方法被调用,我们就可以在需要扩展的地方轻松的进行扩展。
以上这篇基于asp.net mvc 应用程序的生命周期(详解)就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持。
推荐阅读
-
详解ASP.NET MVC的筛选器
-
基于Asp.Net Core MVC和AdminLTE的响应式管理后台之侧边栏处理
-
详解基于MVC的数据查询模块进行模糊查询
-
asp.net core MVC之实现基于token的认证
-
基于asp.net MVC 应用程序的生命周期(详解)
-
详解ASP.NET MVC下的异步Action的定义和执行原理
-
使用Asp.Net Core MVC 开发项目实践[第四篇:基于EF Core的扩展2]
-
Asp.Net MVC WebAPI的创建与前台Jquery ajax后台HttpClient调用详解
-
ASP.NET MVC下基于异常处理的完整解决方案总结
-
基于ASP.NET MVC Remote验证的AdditionalFields与checkbox搭配使用的BUG