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

<global-result>标签灵活运用,action直接跳转上任意页面

2012-11-01 
global-result标签灵活运用,action直接跳转到任意页面struts2里struts.xml配置文件的的片段:action里写

<global-result>标签灵活运用,action直接跳转到任意页面
struts2里struts.xml配置文件的的片段:




action里写法:
protected String pagepath = "";protected String pagepathaction = "";public final String PAGEPATH = "pagepath";public final String PAGEPATHACTION = "pagepathaction";public String getPagepathaction() {return pagepathaction;}public void setPagepathaction(String pagepathaction) {this.pagepathaction = pagepathaction;}public String getPagepath() {return pagepath;}public void setPagepath(String pagepath) {this.pagepath = pagepath;}public String returnpagepath() throws Exception{this.pagepath = "/success.jsp";return PAGEPATH;}

热点排行