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

struts失去当前访问路径的namespace及action

2012-11-04 
struts得到当前访问路径的namespace及action读struts2源码org.apache.struts2.components.ServletUrlRende

struts得到当前访问路径的namespace及action

读struts2源码org.apache.struts2.components.ServletUrlRenderer得到当前访问路径的namespace及action。

 ActionInvocation ai = (ActionInvocation) ActionContext.getContext().get(ActionContext.ACTION_INVOCATION); final String action = ai.getProxy().getActionName();             final String namespace = ai.getProxy().getNamespace();             System.out.println(action+"--------"+namespace);

?

热点排行