STRUTS2的源码分析
今天,好不容易把struts2的一个源码片段弄清楚了点,现在说说,让别人的类似疑惑暂定。
ok,我在2.2.1的版本看到
// if the ActionMapping says to go straight to a result, do it! if (mapping.getResult() != null) { Result result = mapping.getResult(); result.execute(proxy.getInvocation()); } else { proxy.execute(); }
在大部分想都是走ELSE路线,但是mapping.getResult() != null 是什么时候才能出现呢?在网上GOOGLE
" if the ActionMapping says to go straight to a result, do it!" 最后通常是找不到问题的原因的。
今天我发现问题的答案在 DefaultActionMapper 这个类的注释里面。
也就是当BUTTON的请求是
<s:submit name="redirect:http://www.google.com.hk" value="Cancel"/> <s:submit name="redirectAction:list" value="Cancel122"/>
这样以
protected static final String REDIRECT_PREFIX = "redirect:";
protected static final String REDIRECT_ACTION_PREFIX = "redirectAction:";
redirect: 或者redirectAction:开头的button是走mapping.getResult() != null 路线的。
如果有其他情况,请看客们说说,谢谢!
相关推荐
瓜牛呱呱 2020-11-12
柳木木的IT 2020-11-04
yifouhu 2020-11-02
lei0 2020-11-02
源码zanqunet 2020-10-28
源码zanqunet 2020-10-26
一叶梧桐 2020-10-14
码代码的陈同学 2020-10-14
lukezhong 2020-10-14
lzzyok 2020-10-10
anchongnanzi 2020-09-21
clh0 2020-09-18
changcongying 2020-09-17
星辰大海的路上 2020-09-13
abfdada 2020-08-26
mzy000 2020-08-24
shenlanse 2020-08-18
zhujiangtaotaise 2020-08-18
xiemanR 2020-08-17