首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 开源软件 >

自个儿写的一个用来转发URL的Action(struts2)

2012-07-27 
自己写的一个用来转发URL的Action(struts2)/** * 万用转发Action * 使用其代替直接写指向jsp的URL。这样可

自己写的一个用来转发URL的Action(struts2)

/** * 万用转发Action * 使用其代替直接写指向jsp的URL。这样可以统一控制权限等操作。 * 调用方法:/dispatch.action?target=dic/dic-frame * 表示此次调用的目标页面是:/dic/dic-frame.jsp *  *@author oldbig */@Controller@Scope("prototype")@ParentPackage("my-default")@Namespace("/")public class DispatchAction extends _BaseAction {private String target;@Action(results={@Result(name = "success", location="/${target}.jsp")}) public String execute() throws Exception {return SUCCESS;}/** * @return the target */public String getTarget() {return target;}/** * @param target the target to set */public void setTarget(String target) {this.target = target;}



注意: my-default继承struts-default,里面包含了一些拦截器,比如权限检查等等。

-----------------------------

By the way:

一杯茶从早泡到晚的做法不可取。

热点排行