import com.opensymphony.xwork2.ActionSupport;
public class IndexAction extends ActionSupport{
@Override
public String execute(){
return "success";
}
}
编写开发中用的Action的execute()方法
最新推荐文章于 2018-09-27 13:06:31 发布
import com.opensymphony.xwork2.ActionSupport;
public class IndexAction extends ActionSupport{
@Override
public String execute(){
return "success";
}
}