OK.是不是写得很乱?我自己都觉得惭愧啦,没办法,只好让我们再回头分析一下我们碰到几个角色吧:
1、HandlerMapping
HandlerMapping这个接口的定义非常简单:
public interface HandlerMapping {
HandlerExecutionChain getHandler(HttpServletRequest request) throws Exception;
}
不就是根据request的URL path来取得相应的HandlerExecutionChain。
例如:我的URL是 http://localhost:8080/blog/xiecc.htm
RequestURL的字符串一截,拿到了”/xiecc.htm”,再去每个HandlerMapping里一查(还记得初始化时我们已经将所有的HandlerMapping都从配置文件里注入进来了吧),假如我们在某个SimpleUrlHandlerMapping里找到了”/xiecc.htm”,我就立刻可以拿到它对应Controller和一组intercetpors了,拿过来组装一下就是一个HandlerExecutionChain啦。
下面是HandlerMapping的类图:

看上去有点麻烦,其实挺简单,具体的类我就不分析啦。它的核心是:it’s all about HashMap。
还记得我们在Spring MVC最常用的HandlerMapping吗?是SimpleUrlHandlerMapping,我们在配置它的时候,最核心的结构就是HashMap,哈哈!东西都在HashMap里,只要通过URL分析找到HashMap的key,比如说”/xiecc.htm”,用个get方法不就啥都取到了。
在Spring的配置文件里我们可以配置多个HandlerMapping,它会一个一个去找到的,直到找到跟URL匹配的那个Controller,要不然就返回null啦。
2、HandlerExecutionChain
我前面说了HandlerExecutionChain就是一个Controller和一组interceptors。这是我们执行一个request最基本的单元啦。
不过现实情况会稍有些出入,HandlerExecutionChain实际上包括的一个Object和一组interceptor。这个Object是Adaptor,它可以是Controller的Adaptor,也可以是其它类的Adaptor。但现实中我们一般用到的都是Controller,因此不详细分析啦,这里用了Adaptor后大大降低了代码的可读性,来换取与Controller非紧耦合的灵活性。至少我现在认为这样做不是太值。
3、Controller
Controller是Spring MVC执行的核心单元,也是程序员需要自完成的重要部分。用过Spring MVC的人应该都对它非常熟悉啦。所以不做太具体的分析。以下是它的类图:

看一下类图就知道啦,这又是Template Method的典型应用。Controller最大的优势也正是利用Template Method,把Controller分解成不同功能的子类。想要把request里的东西populate到一个bean里吗?直接继承SimpleFormController就行啦。想要在Controller里写多个方法吗?用MultiActionController。这些Controller设计得面面俱到,但因为Controller的类层次太多,有的人会觉得烦。呵呵,随个人喜好啦。
不过最核心的是不管这些Controller如何千变万化,它们都实现了统一的Controller接口,这使DispatchAction调它时候根据不需要知道Controller的细节,嗯,the power of interface。
Controller里的数据绑定也是一个值得研究的东西,挺好玩的,不过这次没空写啦。
4、interceptor
Interceptor的接口定义如下:
public interface HandlerInterceptor {
boolean preHandle(HttpServletRequest request, HttpServletResponse response, Object handler)
throws Exception;
void postHandle(
HttpServletRequest request, HttpServletResponse response, Object handler, ModelAndView modelAndView)
throws Exception;
void afterCompletion(
HttpServletRequest request, HttpServletResponse response, Object handler, Exception ex)
throws Exception;
}
具体的我就不展开分析啦,我们只要记住interceptor的三个hook point(在AOP里叫join point,哈哈):Controller执行前,Controller执行后,页面显示完成后。
5、ViewResolver
ViewResolver是一个有趣的角色,它本身完成两个功能:一是完成了View与实际页面名称对应关系的配置,二是View的工厂(这可是标准的工厂模式啊,每个ViewResolver负责生产自己的View)。
以下是ViewResolver接口的定义:
public interface ViewResolver {
View resolveViewName(String viewName, Locale locale) throws Exception;
}
用过Spring MVC的人都配置过ViewResolver,因此这里不详细展开。
我将它对属性分成两类:一类是页面文件配置,包括prefix, suffix;另一类是作为view的工厂注入到View里的属性,如ContentType之类的。
以下是ViewResolver的类图:

6、View
View是真正负责显示页面的地方。它的接口如下:
public interface View {
void render(Map model, HttpServletRequest request, HttpServletResponse response) throws Exception;
}
其实这是一个简单任务,给我一个HashMap,再给个页面URI,把这个页面显示出来还不是小Case。不过不同的View显示到页面上的区别还是挺大的,如果是JSP,我只要把HashMap里的东西填到request里,再交给RequestDispatcher来forward一下就行了;如果是Velocity,那就把HashMap里的东西填到Veloticy的Context里,再把模板生成的东西merge到response的writer里就完事了。当然还有pdf或xls的View,我还没空研究它,哪天有兴趣了再看看吧,以下是View的类图:

写完这篇文章后,终于明白了什么叫做眼高手低。本来很希望写得抽象些,最后却发现我写的东西跟一般的流水帐式的源码分析其实区别不太大。呜呜,从具体到抽象很难,再把抽象的东西转化成具体更难,但只有经过这样的一层转换,我们的认识才能有很大的提高,我们的水平才能进步。
文章分类: java前篇(05-08-19): Spring MVC framework深入分析之三(上)--执行过程
后篇(05-08-28): 与牛人面对面—potian 与 gigix
最新回复(85件)
| 主题/内容 | 作者/日时 |
|---|---|
|
Re: Spring MVC framework深入分析之三(下)--执行过程
写的不错啊,但看到“Controller里的数据绑定也是一个值得研究的东西,挺好玩的,不过这次没空写啦。”晕过去了(: |
seaman
06-03-01 10:50 |
|
Re: Spring MVC framework深入分析之三(下)--执行过程
不过,用过UML的就会知道,你这些图只不过就是把人家的类图表示了一下,没有所谓的抽象啊 |
jiangyu
06-06-15 14:12 |
|
Re: Spring MVC framework深入分析之三(下)--执行过程
很好的引导性教程阿,搜索下就知道作者的功绩拉,,, |
fff
06-11-17 20:44 |
|
漏电开关测试仪
但我只是向“榕树下”索取 |
漏电开关测试仪
07-10-04 16:28 |
|
Re: Spring MVC framework深入分析之三(下)--执行过程
写的不错!!! |
xiao ye
07-12-07 11:13 |
|
Thanks a lot! ;-)
Thanks a lot! ;-) |
David Lee
09-03-25 04:24 |
|
Good site.
Good site. |
Lpxlixad
09-06-08 23:14 |
|
dvvWxa It can assist men with this disorder in achieving and maintaining an erection during sexual activity
dvvWxa It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 07:40 |
|
elMlty It can assist men with this disorder in achieving and maintaining an erection during sexual activity
elMlty It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 08:55 |
|
TqBpkJ It can assist men with this disorder in achieving and maintaining an erection during sexual activity
TqBpkJ It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 12:37 |
|
2lsxn2 It can assist men with this disorder in achieving and maintaining an erection during sexual activity
2lsxn2 It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 13:00 |
|
b9k1iS It can assist men with this disorder in achieving and maintaining an erection during sexual activity
b9k1iS It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 15:46 |
|
8J6HZS It can assist men with this disorder in achieving and maintaining an erection during sexual activity
8J6HZS It can assist men with this disorder in achieving and maintaining an erection during sexual activity |
Vardena
09-06-18 17:29 |
|
buy genericviagra cheap
Thanks |
viagra
09-06-24 19:11 |
|
Z721Kg Armchair sightseeing, with links to many famous places and landmarks
Z721Kg Armchair sightseeing, with links to many famous places and landmarks |
Armchair
09-06-28 14:38 |
|
QPi9D9 Armchair sightseeing, with links to many famous places and landmarks
QPi9D9 Armchair sightseeing, with links to many famous places and landmarks |
Armchair
09-06-29 14:50 |
|
Yn0nRc Armchair sightseeing, with links to many famous places and landmarks
Yn0nRc Armchair sightseeing, with links to many famous places and landmarks |
Armchair
09-06-29 22:49 |
|
EcpToB Armchair sightseeing, with links to many famous places and landmarks
EcpToB Armchair sightseeing, with links to many famous places and landmarks |
Armchair
09-06-30 23:19 |
|
2.txt;4;5
2.txt;4;5 |
uuDfqeCRSraAmQlEx
09-07-31 03:37 |
|
2.txt;4;5
2.txt;4;5 |
UAhMLskfaIELZlUQn
09-07-31 04:33 |
|
2.txt;4;5
2.txt;4;5 |
LuJZyNYFOft
09-07-31 04:42 |
|
2.txt;4;5
2.txt;4;5 |
WKexjkrXSSjh
09-07-31 05:44 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
WRlfExIGEfzE
09-08-09 07:48 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
AUOxnQLmDfMtMtC
09-08-09 07:54 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
brKTCtrbvuyCVyiG
09-08-09 08:37 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
gVeogKgmjkpfqvZ
09-08-09 08:43 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
ABryHKftQMgYnhwsKU
09-08-09 09:26 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
PCkMcCSrzxwxWbZq
09-08-09 09:32 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
mLverrSxYZVwEJNq
09-08-09 10:14 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
cBXbVZUIHqq
09-08-09 10:20 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
FYMCJpxsNwDUzXsmT
09-08-09 11:03 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
WAqWaSWZWAOxNGorcL
09-08-09 11:11 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
YJasWcizyArY
09-08-09 11:58 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
hJUomVpoP
09-08-09 12:05 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
TktiBiyJqstgVCwLid
09-08-09 12:52 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
lZYrPtvxJBBNLx
09-08-09 12:59 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
xgnEjgSjqv
09-08-09 13:41 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
udmYwFUKK
09-08-09 13:47 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
zYqlderrgYv
09-08-09 14:30 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
UydXLtmClu
09-08-09 14:36 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
aqgECoHXn
09-08-09 15:18 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
QirDmKaGvkxIsHa
09-08-09 15:24 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
SrCrvUFHXjiG
09-08-09 16:07 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
nzQQCRgwOLGloPM
09-08-09 16:13 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
daczvLcTOTZaL
09-08-09 16:57 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
KlGjUtZzBNAGCTNOgYK
09-08-09 17:03 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
kdQiVyIaJjVp
09-08-09 17:48 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
obcmfFTVyvFTScIvDQN
09-08-09 17:54 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
cefDVVrOeYzDog
09-08-09 18:36 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
QUHxbLOgCQrDIT
09-08-09 18:42 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
HRmbdjuBqp
09-08-09 19:27 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
lhAghNVVPjAbGuakGbb
09-08-09 19:30 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
laqDLxGjhZgcTjIlR
09-08-09 20:18 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
dUqsVhri
09-08-09 20:25 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
MCKRSMclersSgeI
09-08-09 21:08 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
PZSghfynngFkbXF
09-08-09 21:14 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
xyocsQJKvbT
09-08-09 22:03 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
kxLcqJCoHKB
09-08-09 22:46 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
XWfjHHeoO
09-08-09 22:53 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
ElGiyUoHxWQebMzdW
09-08-09 23:34 |
|
ontyime.txt;4;5
ontyime.txt;4;5 |
RalqgHWiWTFsaPcr
09-08-09 23:41 |
|
Purchase a mirror with an ornate frame to hang in the room or, alternatively, choose a picture frame and have a mirror fitted inside,
Purchase a mirror with an ornate frame to hang in the room or, alternatively, choose a picture frame and have a mirror fitted inside, |
myg0t
09-09-23 18:59 |
|
Purchase a mirror with an ornate frame to hang in the room or, alternatively, choose a picture frame and have a mirror fitted inside,
Purchase a mirror with an ornate frame to hang in the room or, alternatively, choose a picture frame and have a mirror fitted inside, |
myg0t
09-09-23 18:59 |
|
Loyal customers who opt into your email list will likely not view these emails as spam and may purchase additional products and services from your business as a result of this marketing strategy,
Loyal customers who opt into your email list will likely not view these emails as spam and may purchase additional products and services from your business as a result of this marketing strategy, |
Madacc
09-09-23 19:12 |
|
If you do so you will be black listed or your chance is very small to get more booking,
If you do so you will be black listed or your chance is very small to get more booking, |
pabs
09-09-23 19:26 |
|
This will help to give your customers a feeling of comfort,
This will help to give your customers a feeling of comfort, |
noor
09-09-23 19:51 |
|
You should submit your blog URL address to search engines and blog directories,
You should submit your blog URL address to search engines and blog directories, |
Vibroboy
09-09-23 20:03 |
|
After the wedding, she can wear the necklace at its full length to create a fashionable effect,
After the wedding, she can wear the necklace at its full length to create a fashionable effect, |
mlimburg
09-09-23 20:16 |
|
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus,
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus, |
Vette_Boss
09-09-23 20:29 |
|
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus,
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus, |
Vette_Boss
09-09-23 20:30 |
|
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus,
Search engine optimization is probably the best single tactic for building brand awareness and sales and is the reason we hired a staff of SEO gurus, |
Vette_Boss
09-09-23 20:31 |
|
Try to include personal experiences which relates to the topic of your blog entry,
Try to include personal experiences which relates to the topic of your blog entry, |
Adrian
09-09-23 20:42 |
|
Before you go hunting for a new lamp, be prepared with a few helpful hints,
Before you go hunting for a new lamp, be prepared with a few helpful hints, |
Rebel
09-09-23 21:09 |
|
If you do so you will be black listed or your chance is very small to get more booking,
If you do so you will be black listed or your chance is very small to get more booking, |
grandslam
09-09-23 21:22 |
|
There are numerous ways to build traffic,
There are numerous ways to build traffic, |
DanielB
09-09-23 21:34 |
|
Even with large buffers, the speed in which data is transmitted to the processor is prohibited by the rate at which data is conveyed from the CCD,
Even with large buffers, the speed in which data is transmitted to the processor is prohibited by the rate at which data is conveyed from the CCD, |
dagreen
09-09-23 21:47 |
|
It can modify the sniveis of arterial pressure, but the obtained loss of weight generally compensates this alteration much well,
It can modify the sniveis of arterial pressure, but the obtained loss of weight generally compensates this alteration much well, |
cracyone
09-09-23 21:59 |
|
The possibilities are endless with today's line of hardware, woodworking and project supplies,
The possibilities are endless with today's line of hardware, woodworking and project supplies, |
mitsubishi
09-09-23 22:12 |
|
Lighter weight lamps should be used in areas that draw less traffic in the home,
Lighter weight lamps should be used in areas that draw less traffic in the home, |
LoneDragon
09-09-23 22:23 |
|
Make sure that the bedding pattern or color is not the primary focal point of the room, and let the smaller accessories add touches of brightness instead,
Make sure that the bedding pattern or color is not the primary focal point of the room, and let the smaller accessories add touches of brightness instead, |
gordy
09-09-23 22:35 |
|
Black Hat Jack is dedicated to helping people who are serious about creating a successful home based online business,
Black Hat Jack is dedicated to helping people who are serious about creating a successful home based online business, |
Zef Hemel
09-09-23 22:48 |
|
This applies certainly to California, Arizona, Texas, Florida, New York, and some others,
This applies certainly to California, Arizona, Texas, Florida, New York, and some others, |
njivy
09-09-23 23:11 |
|
But when it comes to branding they will fall very short in planning, strategy, creative and many other areas,
But when it comes to branding they will fall very short in planning, strategy, creative and many other areas, |
worldstallest
09-09-23 23:24 |
|
You may also dampen the cloth with a mild solution of soapy water,
You may also dampen the cloth with a mild solution of soapy water, |
cruise
09-09-23 23:36 |
|
The varieties MR11 and MR16 are used widely in track lighting and also in many retail lighting applications, Zac efron vanessa hudgnes, Nordic tract, Welfare debates, Blacklight asian, Wax models by anna morandi manzolini, W j deutsch, Dade county accident lawyers, Co2 calculator, Marc rudov, Quilt cruise, Robotic kit, Natoma herbert, 3743 bmts 1988 1989, Samsung 56, Famous pediatrician, Bumper to bumper auto repair, Southern babes, Ceramic flat irons, Rhoda mcintosh, Types of friction, Aisha woods, Homing pigeon loft, Blue pear, Harmon kardon avr 247, Scuba dive, Arthur percy, Charles follen mckim, Vincent larusso, Nurse anesthesia school, Somerset houseboats for sale, Floor tile on fireplace, Paec, N95 applications, Grumpy old men, Flv audio convert, Reeds ferry sheds, Tri city airport, Jeff hammond, Rossettes, Nassau tool works, Curtiss aircraft, Teresa garzia lecci, Bc kpg, Harvesting horseradish, Police 12 hour schedule calendar, Budds bmw, Roseburg or newspaper, Apartments in cordova tn, Cave of treasures, Libra symbols, Stretch mark prevention, Chat line free trial, Starburst clock, Mike vogel shirtless, Tmmk, Transmission line conversion transformers, Billboard advertising rates, Delaware technical and community and college, Epoxy resin flooring, St cruz de tenerife, Fear factor photo gallery, Ototoxic, Horse bell, Oklahoma city mini storage, Shout your lungs out, Hbo listings, Gigi dagostino la passion, Afaa, Removing red wine stain, Jcr 2007 impact factor, Northern pikeminnow, Matrix generator, Landrover defender 90, Army builder license, Glinsmann inc, Canada for sale by owner, Start up programs vista, Walt whitman bridge, Exergy, Multiple email accounts, Future spacecraft, Retractable stairs, Military vehicles for sale, American brittany rescue, Windows genuine advantage tool, Bouwen sleutel op de deur, Shane gatto, Providence hospital everett washington, Jessica simpson boob shot, Miramar florida teachers, Long fibers composite, Lavender moon, Carabean resort vacations, Black muscle men blog, Meeting jokes, Tillamook visitor oregon,
The varieties MR11 and MR16 are used widely in track lighting and also in many retail lighting applications, |
JohnL
09-09-28 07:01 |
发表评论
引用链接
- 您可以按照以下步骤引用本文.本站收到您的引用通知后, 将自动链接您的文章, 以方便别人阅览 .
- 1. 启动您自己的博客管理页面, 并进入发表新文章的画面, 输入文章的内容. (如果您是ITPUB的博客请点这里.)
- 2. 复制下面虚线框里的连接字串, 把它们粘贴到您的文章中, 按照您的喜好修改一下表示文字.
- 3. 确认您选择了"发送引用通知"的选项.
- 4. 发表您的文章.
- 好啦, 您的文章就可以被自动链接到本站啦.
| « | 三月 2010 | » | ||||
|---|---|---|---|---|---|---|
| 一 | 二 | 三 | 四 | 五 | 六 | 日 |
| 1 | 2 | 3 | 4 | 5 | 6 | 7 |
| 8 | 9 | 10 | 11 | 12 | 13 | 14 |
| 15 | 16 | 17 | 18 | 19 | 20 | 21 |
| 22 | 23 | 24 | 25 | 26 | 27 | 28 |
| 29 | 30 | 31 | ||||
| 国内技术blog |
|---|
|
|
|
|
| 国外技术blog |
|---|
|
|
|
|
|
|
|
|
|
|
|
|
| 技术站点 |
|---|
|
|
|
|
| 我的联系方式 |
|---|
|
|
|
|
| 友情链接 |
|---|
|
|
|
|
|
|
| 主页RSS |
|---|
|
|
|
|
|
|
