首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件架构设计 >

struts2 的各种intercepter 引见

2012-09-04 
struts2 的各种intercepter 介绍一,interceptor namechain typechainotherAction/result /acti

struts2 的各种intercepter 介绍

一,<interceptor name="chain" type="chain">otherAction</result> </action> <action name="otherAction" class="java"> /** * Hook that set the <code>cookiesMap</code> into action that implements * {@link CookiesAware}. * * @param action * @param cookiesMap */ protected void injectIntoCookiesAwareAction(Object action, Map<String, String> cookiesMap) { if (action instanceof CookiesAware) { if (LOG.isDebugEnabled()) LOG.debug("action ["+action+"] implements CookiesAware, injecting cookies map ["+cookiesMap+"]"); ((CookiesAware)action).setCookiesMap(cookiesMap); } }?

热点排行