Java 版 (精华区)
发信人: thering (没完没了), 信区: Java
标 题: struts源码分析=====RedirectingActionForward
发信站: 哈工大紫丁香 (2003年05月17日18:32:49 星期六), 站内信件
www.javasoft.cn出品
package org.apache.struts.action;
RedirectingActionForward
2003-5-17日
package org.apache.struts.action;
//重定向actionforward
public class RedirectingActionForward extends ActionForward {
public RedirectingActionForward() {
this(null);
}
public RedirectingActionForward(String path) {
super();
setName(null);
setPath(path);
//redirect=true!
setRedirect(true);
}
}
※ 来源:·哈工大紫丁香 bbs.hit.edu.cn·[FROM: 202.118.228.151]
Powered by KBS BBS 2.0 (http://dev.kcn.cn)
页面执行时间:2.123毫秒